getUserID static method

Future<String> getUserID()

Get the user ID which you set.

Implementation

static Future<String> getUserID() async {
  final userID = await _invokeMethod<String>('getUserID');
  return userID!;
}