TransactionHandler<T extends dynamic> typedef

TransactionHandler<T extends dynamic> = Future<T?>? Function(TransactionPlatform)

The TransactionHandler may be executed multiple times, it should be able to handle multiple executions.

Implementation

typedef TransactionHandler<T extends dynamic> = Future<T?>? Function(
    TransactionPlatform);