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