OutputConfig.fromJson constructor

OutputConfig.fromJson(
  1. 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,
      );