copyWith method
Implementation
AccountRequestWithdrawResponse copyWith({
String? operationId,
double? withdrawValue,
}) {
return AccountRequestWithdrawResponse(
operationId: operationId ?? this.operationId,
withdrawValue: withdrawValue ?? this.withdrawValue,
);
}