OutputConfig.fromJson constructor
OutputConfig.fromJson(
- Map json_
Implementation
OutputConfig.fromJson(core.Map json_)
: this(
gcsDestination: json_.containsKey('gcsDestination')
? GcsDestination.fromJson(json_['gcsDestination']
as core.Map<core.String, core.dynamic>)
: null,
);