asyncCreate method

Future<Account> asyncCreate()

Implementation

Future<Account> asyncCreate() async {
  var acc = await new Account(null, this.messenger).asyncCreate();
  this.add(acc);
  return acc;
}