setCrashCustomProperty method

  1. @override
Future<void> setCrashCustomProperty(
  1. Map<String, dynamic> properties
)
override

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});
  }
}