properties static method
Get all user properties saved in the SDK.
Implementation
static Future<Map<String, dynamic>> properties() async {
var res = await _channel.invokeMethod(AdropMethod.getProperty);
if (res is Map) {
return Map<String, dynamic>.from(res);
} else {
return {};
}
}