DimensionRange.fromJson constructor

DimensionRange.fromJson(
  1. Map json_
)

Implementation

DimensionRange.fromJson(core.Map json_)
    : this(
        dimension: json_.containsKey('dimension')
            ? json_['dimension'] as core.String
            : null,
        endIndex: json_.containsKey('endIndex')
            ? json_['endIndex'] as core.int
            : null,
        sheetId: json_.containsKey('sheetId')
            ? json_['sheetId'] as core.int
            : null,
        startIndex: json_.containsKey('startIndex')
            ? json_['startIndex'] as core.int
            : null,
      );