getUserProperties method
Implementation
@override
Future<Map<String, dynamic>?> getUserProperties() async {
try {
final result = await methodChannel.invokeMapMethod<String, dynamic>('getUserProperties');
return result;
} on PlatformException catch (e, s) {
developer.log('getUserProperties failed: $e', name: 'Apptics');
return null;
}
}