DimensionRange.fromJson constructor

DimensionRange.fromJson(
  1. Map json_
)

Implementation

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