setCrashCustomProperty method
Implementation
@override
Future<void> setCrashCustomProperty(Map<String, dynamic> properties) async {
if (Platform.isIOS) {
methodChannel
.invokeMethod('setCrashCustomProperty', {"properties": properties});
} else if (Platform.isAndroid) {
methodChannel
.invokeMethod('setCrashCustomProperty', {"properties": properties});
}
}