Query$SaveEyeGraphUtil_GetDevicePopAndSerial$devicePoPAndSerialById.fromJson constructor

Query$SaveEyeGraphUtil_GetDevicePopAndSerial$devicePoPAndSerialById.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$SaveEyeGraphUtil_GetDevicePopAndSerial$devicePoPAndSerialById.fromJson(
  Map<String, dynamic> json,
) {
  final l$id = json['id'];
  final l$serial = json['serial'];
  final l$devicePoP = json['devicePoP'];
  final l$$__typename = json['__typename'];
  return Query$SaveEyeGraphUtil_GetDevicePopAndSerial$devicePoPAndSerialById(
    id: ensureDashedUuidFromId(l$id),
    serial: (l$serial as String),
    devicePoP: (l$devicePoP as String?),
    $__typename: (l$$__typename as String),
  );
}