DeviceInformationChangeError.notFound constructor Null safety

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

An error that indicates that the device information to be updated could not be found.

Params:

  • json: contains the source for instance creation.

Implementation

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