BatchDocumentOutputConfig.fromJson constructor

BatchDocumentOutputConfig.fromJson(
  1. Map json_
)

Implementation

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