UpdateIndexRequest.fromJson constructor
UpdateIndexRequest.fromJson(
- Object? j
Implementation
factory UpdateIndexRequest.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return UpdateIndexRequest(
index: switch (json['index']) {
null => null,
Object $1 => Index.fromJson($1),
},
updateMask: switch (json['updateMask']) {
null => null,
Object $1 => protobuf.FieldMask.fromJson($1),
},
);
}