withdraw static method

Any withdraw(
  1. String bankAccountId
)

Implementation

static Any withdraw(String bankAccountId) => Any(
      typeUrl: withdrawTypeUrl,
      value: (Withdraw()..bankAccountId = bankAccountId).writeToBuffer(),
    );