OutOfBandOperationError.tokenAlreadyRedeemed constructor

OutOfBandOperationError.tokenAlreadyRedeemed(
  1. Map<String, dynamic> json
)

An error that indicates that the token was already redeemed.

Params:

  • json: contains the source for instance creation.

Implementation

factory OutOfBandOperationError.tokenAlreadyRedeemed(
  Map<String, dynamic> json,
) {
  return OutOfBandOperationTokenAlreadyRedeemed.fromJson(json);
}