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