TableCellLocation.fromJson constructor

TableCellLocation.fromJson(
  1. Map json_
)

Implementation

TableCellLocation.fromJson(core.Map json_)
    : this(
        columnIndex: json_.containsKey('columnIndex')
            ? json_['columnIndex'] as core.int
            : null,
        rowIndex: json_.containsKey('rowIndex')
            ? json_['rowIndex'] as core.int
            : null,
        tableStartLocation: json_.containsKey('tableStartLocation')
            ? Location.fromJson(json_['tableStartLocation']
                as core.Map<core.String, core.dynamic>)
            : null,
      );