asyncCreate method

Future<Account> asyncCreate()

Implementation

Future<Account> asyncCreate() async {
  try {
    String? prv = await asyncGeneratePrivateKey();
    return new Account(prv, this.messenger);
  } catch (e) {
    rethrow;
  }
}