AppendDimensionRequest.fromJson constructor

AppendDimensionRequest.fromJson(
  1. 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,
      );