GetGlobalOperationRequest.fromJson constructor
GetGlobalOperationRequest.fromJson(
- Object? j
Implementation
factory GetGlobalOperationRequest.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return GetGlobalOperationRequest(
operation: switch (json['operation']) {
null => '',
Object $1 => decodeString($1),
},
project: switch (json['project']) {
null => '',
Object $1 => decodeString($1),
},
);
}