GridCoordinate.fromJson constructor
GridCoordinate.fromJson(
- Map json_
Implementation
GridCoordinate.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,
sheetId: json_.containsKey('sheetId')
? json_['sheetId'] as core.int
: null,
);