copyWith method

Input$CheckSuiteAutoTriggerPreference copyWith({
  1. String? appId,
  2. bool? setting,
})

Implementation

Input$CheckSuiteAutoTriggerPreference copyWith(
        {String? appId, bool? setting}) =>
    Input$CheckSuiteAutoTriggerPreference(
        appId: appId == null ? this.appId : appId,
        setting: setting == null ? this.setting : setting);