TableDataInsertAllRequestRows.fromJson constructor

TableDataInsertAllRequestRows.fromJson(
  1. Map json_
)

Implementation

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