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