InsertTableColumnsRequest.fromJson constructor

InsertTableColumnsRequest.fromJson(
  1. Map json_
)

Implementation

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