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