TableRange.fromJson constructor

TableRange.fromJson(
  1. Map json_
)

Implementation

TableRange.fromJson(core.Map json_)
  : this(
      columnSpan: json_['columnSpan'] as core.int?,
      rowSpan: json_['rowSpan'] as core.int?,
      tableCellLocation:
          json_.containsKey('tableCellLocation')
              ? TableCellLocation.fromJson(
                json_['tableCellLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );