copyWith method
Implementation
CreditRelayRemoveResponse copyWith({bool? removed, String? requestId}) {
return CreditRelayRemoveResponse(
removed: removed ?? this.removed,
requestId: requestId ?? this.requestId);
}
CreditRelayRemoveResponse copyWith({bool? removed, String? requestId}) {
return CreditRelayRemoveResponse(
removed: removed ?? this.removed,
requestId: requestId ?? this.requestId);
}