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