copyWithWrapped method
Implementation
BankTransferBalance copyWithWrapped(
{Wrapped<String>? available, Wrapped<String>? transactable}) {
return BankTransferBalance(
available: (available != null ? available.value : this.available),
transactable:
(transactable != null ? transactable.value : this.transactable));
}