identifier property

Future<String?> identifier

Get the user identifier. Returns null if you didn't set one.

Implementation

Future<String?> get identifier async {
  return await _channel.invokeMethod('user.getIdentifier');
}