getUserData method
Returns true if the plugin is initialized, false otherwise.
Implementation
@override
Future<Map<Object?, Object?>?> getUserData() async {
final map = await methodChannel
.invokeMethod<Map<Object?, Object?>>(getUserDataMethodName);
return map;
}