copyWith method
- {bool? check,
- SelfCheckType? type,
- int? number}
Implementation
SelfCheck copyWith({bool? check, SelfCheckType? type, int? number}) {
return SelfCheck(
type: type ?? this.type,
number: number ?? this.number,
check: check ?? this.check,
);
}