fetchLoggedInUserAttributes method

  1. @override
Future<Map<String, dynamic>> fetchLoggedInUserAttributes()
override

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;
}