getAppstackId method

  1. @override
Future<String?> getAppstackId()
override

Get the Appstack ID for the current user

Implementation

@override
Future<String?> getAppstackId() async {
  final result = await methodChannel.invokeMethod<String>('getAppstackId');
  return result;
}