onResult abstract method

PendingOutOfBandOperations onResult(
  1. dynamic onResult(
    1. PendingOutOfBandOperationsResult
    )
)

Specifies the object that will be invoked with the PendingOutOfBandOperationsResult containing the pending out-of-band operations for this application and the errors (if any).

IMPORTANT
Providing the onResult callback is required.

Params:

  • onResult: the Function that will be invoked when the operation finishes.

Returns: a PendingOutOfBandOperations object.

Implementation

PendingOutOfBandOperations onResult(
  Function(PendingOutOfBandOperationsResult) onResult,
);