createAccount method

Future<Account> createAccount()

Create a new, random generated account.

Implementation

Future<Account> createAccount() async {
  return Account.random();
}