hasAllRecords static method

Future<bool> hasAllRecords()

hasAllRecords()

  • Method to check if all User records are in the Namebase DNS Table.
  • Sets User Name if Provided Optional : SName

Implementation

static Future<bool> hasAllRecords() async {
  // Return SName
  return await hasAuthRecord() && await hasSNameRecord();
}