copyWith method

Input$CheckRunFilter copyWith({
  1. int? appId()?,
  2. String? checkName()?,
  3. Enum$CheckRunType? checkType()?,
  4. Enum$CheckStatusState? status()?,
})

Implementation

Input$CheckRunFilter copyWith(
        {int? Function()? appId,
        String? Function()? checkName,
        Enum$CheckRunType? Function()? checkType,
        Enum$CheckStatusState? Function()? status}) =>
    Input$CheckRunFilter(
        appId: appId == null ? this.appId : appId(),
        checkName: checkName == null ? this.checkName : checkName(),
        checkType: checkType == null ? this.checkType : checkType(),
        status: status == null ? this.status : status());