copyWith method

RpayCancelResponse copyWith({
  1. String? status,
  2. String? desc,
})

Implementation

RpayCancelResponse copyWith({
  String? status,
  String? desc,
}) {
  return RpayCancelResponse(
    status: status ?? this.status,
    desc: desc ?? this.desc,
  );
}