Query$GetAlarmConfigurations.fromJson constructor
Query$GetAlarmConfigurations.fromJson(
- Map<String, dynamic> json
)
Implementation
factory Query$GetAlarmConfigurations.fromJson(Map<String, dynamic> json) {
final l$deviceByIdV2 = json['deviceByIdV2'];
final l$$__typename = json['__typename'];
return Query$GetAlarmConfigurations(
deviceByIdV2: l$deviceByIdV2 == null
? null
: Query$GetAlarmConfigurations$deviceByIdV2.fromJson(
(l$deviceByIdV2 as Map<String, dynamic>),
),
$__typename: (l$$__typename as String),
);
}