AzureB2CCallback typedef

AzureB2CCallback = Future<void> Function(B2COperationResult)

Standard callback type used from the AzureB2C plugin.

It receives a B2COperationResult object.

Returns an awaitable Future. The AzureB2C plugin is responsible to (async) wait for callback execution whenever an event is emitted.

Implementation

typedef AzureB2CCallback = Future<void> Function(B2COperationResult);