loggedInId static method
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;
}