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