InsertTableColumnRequest.fromJson constructor

InsertTableColumnRequest.fromJson(
  1. Map json_
)

Implementation

InsertTableColumnRequest.fromJson(core.Map json_)
  : this(
      insertRight: json_['insertRight'] as core.bool?,
      tableCellLocation:
          json_.containsKey('tableCellLocation')
              ? TableCellLocation.fromJson(
                json_['tableCellLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );