custom static method

Future<void> custom(
  1. String name,
  2. Map<String, dynamic>? properties
)

Implementation

static Future<void> custom(String name, Map<String, dynamic>? properties) async {
  await _channel.invokeMethod('custom', <String, dynamic>{
    'name': name,
    'properties': properties,
  });
}