loggedInId static method

Future<String?> loggedInId()

A string of the external identifier that Nami has stored. Returns null if no id has been stored, including if a string was passed to login that was not valid.

Implementation

static Future<String?> loggedInId() async {
  final String? loggedInId = await channel.invokeMethod("loggedInId");
  return loggedInId;
}