UnmergeTableCellsRequest.fromJson constructor
UnmergeTableCellsRequest.fromJson(
- Map json_
Implementation
UnmergeTableCellsRequest.fromJson(core.Map json_)
: this(
tableRange:
json_.containsKey('tableRange')
? TableRange.fromJson(
json_['tableRange'] as core.Map<core.String, core.dynamic>,
)
: null,
);