copyWithWrapped method

BankTransferBalance copyWithWrapped({
  1. Wrapped<String>? available,
  2. Wrapped<String>? transactable,
})

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));
}