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