copyWith method

ResponseTefSettings copyWith({
  1. int? id,
  2. String? couponNumber,
})

Implementation

ResponseTefSettings copyWith({
  int? id,
  String? couponNumber,
}) =>
    ResponseTefSettings(
      id: id ?? this.id,
      couponNumber: couponNumber ?? this.couponNumber,
    );