DeleteSheetRequest.fromJson constructor

DeleteSheetRequest.fromJson(
  1. Map json_
)

Implementation

DeleteSheetRequest.fromJson(core.Map json_)
    : this(
        sheetId: json_.containsKey('sheetId')
            ? json_['sheetId'] as core.int
            : null,
      );