GridRange.fromJson constructor

GridRange.fromJson(
  1. Map json_
)

Implementation

GridRange.fromJson(core.Map json_)
    : this(
        endColumnIndex: json_['endColumnIndex'] as core.int?,
        endRowIndex: json_['endRowIndex'] as core.int?,
        sheetId: json_['sheetId'] as core.int?,
        startColumnIndex: json_['startColumnIndex'] as core.int?,
        startRowIndex: json_['startRowIndex'] as core.int?,
      );