NewDeviceMetadataType.fromJson constructor

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

Implementation

factory NewDeviceMetadataType.fromJson(Map<String, dynamic> json) {
  return NewDeviceMetadataType(
    deviceGroupKey: json['DeviceGroupKey'] as String?,
    deviceKey: json['DeviceKey'] as String?,
  );
}