DeviceInformationChangeError.nameAlreadyExists constructor
- Map<
String, dynamic> json
An error that indicates that there is already a dispatch target with the provided name.
Params:
- json: contains the source for instance creation.
Implementation
factory DeviceInformationChangeError.nameAlreadyExists(
Map<String, dynamic> json,
) {
return DeviceInformationChangeNameAlreadyExists.fromJson(json);
}