AppendDimensionRequest.fromJson constructor
AppendDimensionRequest.fromJson(
- Map json_
Implementation
AppendDimensionRequest.fromJson(core.Map json_)
: this(
dimension: json_.containsKey('dimension')
? json_['dimension'] as core.String
: null,
length:
json_.containsKey('length') ? json_['length'] as core.int : null,
sheetId: json_.containsKey('sheetId')
? json_['sheetId'] as core.int
: null,
);