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