FeatureView_BigQuerySource.fromJson constructor
FeatureView_BigQuerySource.fromJson(
- Object? j
Implementation
factory FeatureView_BigQuerySource.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return FeatureView_BigQuerySource(
uri: switch (json['uri']) {
null => '',
Object $1 => decodeString($1),
},
entityIdColumns: switch (json['entityIdColumns']) {
null => [],
List<Object?> $1 => [for (final i in $1) decodeString(i)],
_ => throw const FormatException('"entityIdColumns" is not a list'),
},
);
}