InsertTableRowRequest.fromJson constructor

InsertTableRowRequest.fromJson(
  1. Map json_
)

Implementation

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