newIdentifier function

Future<Identifier> newIdentifier({
  1. required String idStr,
  2. dynamic hint,
})

Creates an Identifier object from the id string.

Implementation

Future<Identifier> newIdentifier({required String idStr, dynamic hint}) async {
  return await KeriPlatformInterface.instance.newIdentifier(idStr: idStr);
}