DeviceInformationChangeError.clockSkewTooBig constructor

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