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