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