DeviceInformationChangeNetworkError.fromJson constructor

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

Alternate constructor that creates a DeviceInformationChangeNetworkError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationChangeNetworkError.fromJson(
  Map<String, dynamic> json,
) {
  return DeviceInformationChangeNetworkErrorImpl.fromJson(json);
}