OperationError.clockSkewTooBig constructor

OperationError.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 OperationError.clockSkewTooBig(Map<String, dynamic> json) {
  return OperationClockSkewTooBig.fromJson(json);
}