GridRange.fromJson constructor

GridRange.fromJson(
  1. Map json_
)

Implementation

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