InsertTableRowsRequest.fromJson constructor

InsertTableRowsRequest.fromJson(
  1. Map json_
)

Implementation

InsertTableRowsRequest.fromJson(core.Map json_)
  : this(
      cellLocation: json_.containsKey('cellLocation')
          ? TableCellLocation.fromJson(
              json_['cellLocation'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      insertBelow: json_['insertBelow'] as core.bool?,
      number: json_['number'] as core.int?,
      tableObjectId: json_['tableObjectId'] as core.String?,
    );