Streamingbuffer.fromJson constructor
      
      Streamingbuffer.fromJson(
    
    
- Map json_
Implementation
Streamingbuffer.fromJson(core.Map json_)
    : this(
        estimatedBytes: json_.containsKey('estimatedBytes')
            ? json_['estimatedBytes'] as core.String
            : null,
        estimatedRows: json_.containsKey('estimatedRows')
            ? json_['estimatedRows'] as core.String
            : null,
        oldestEntryTime: json_.containsKey('oldestEntryTime')
            ? json_['oldestEntryTime'] as core.String
            : null,
      );