PendingOutOfBandOperationsError.clockSkewTooBig constructor

PendingOutOfBandOperationsError.clockSkewTooBig(
  1. Map<String, dynamic> json
)

An error that indicates that the clocks on the mobile and on the server are too apart and the server refused to validate the JWS.

Params:

  • json: contains the source for instance creation.

Implementation

factory PendingOutOfBandOperationsError.clockSkewTooBig(
  Map<String, dynamic> json,
) {
  return PendingOutOfBandOperationsClockSkewTooBig.fromJson(json);
}