DeleteConditionalFormatRuleRequest.fromJson constructor

DeleteConditionalFormatRuleRequest.fromJson(
  1. Map json_
)

Implementation

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