isAccountRegistered static method

bool isAccountRegistered(
  1. String accountId
)

Check if account is registered

Implementation

static bool isAccountRegistered(String accountId) {
  return _accounts[accountId]?.isRegistered ?? false;
}