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