copyWith method
Implementation
CustomerRequestActionDTO copyWith({bool? allowed}) {
return CustomerRequestActionDTO(
allowed: allowed ?? this.allowed,
);
}
CustomerRequestActionDTO copyWith({bool? allowed}) {
return CustomerRequestActionDTO(
allowed: allowed ?? this.allowed,
);
}