OutOfBandOperationError.tokenExpired constructor

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

An error that indicates that the token has expired.

Params:

  • json: contains the source for instance creation.

Implementation

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