copyWith method
Input$CheckRunFilter
copyWith({
- int? appId()?,
- String? checkName()?,
- Enum$CheckRunType? checkType()?,
- 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());