DeviceInformationChangeError.fromJson constructor

DeviceInformationChangeError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor to create an DeviceInformationChangeError from json.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationChangeError.fromJson(Map<String, dynamic> json) {
  return const DeviceInformationChangeErrorConverter().fromJson(json);
}