getDistinctId method

Future<String?> getDistinctId()

Gets the current distinct ID.

Implementation

Future<String?> getDistinctId() async {
  return await _channel.invokeMethod<String>(
      'getDistinctId', <String, dynamic>{'appId': this._appId});
}