GetUserID method
Implementation
@override
Future<String?> GetUserID() async {
try {
return await methodChannel.invokeMethod<String>('GetUserID');
} on PlatformException catch (e) {
print("Failed to call GetUserID: '${e.message}'.");
}
return null;
}