copyWith method

CustomerRequestActionDTO copyWith({
  1. bool? allowed,
})

Implementation

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