fetchLoggedInUserAttributes method
Retrieve the details of the currently logged in user.
Implementation
@override
Future<Map<String, dynamic>> fetchLoggedInUserAttributes() async {
var attributes = Map<String, dynamic>.from(
await _channel.invokeMethod<Map>('fetchLoggedInUserAttributes') ?? {});
return attributes;
}