InsertTableColumnsRequest.fromJson constructor
InsertTableColumnsRequest.fromJson(
- Map json_
Implementation
InsertTableColumnsRequest.fromJson(core.Map json_)
: this(
cellLocation: json_.containsKey('cellLocation')
? TableCellLocation.fromJson(
json_['cellLocation'] as core.Map<core.String, core.dynamic>)
: null,
insertRight: json_['insertRight'] as core.bool?,
number: json_['number'] as core.int?,
tableObjectId: json_['tableObjectId'] as core.String?,
);