sendCustomAttribute static method

Future<void> sendCustomAttribute(
  1. Map<String, dynamic> value
)

Implementation

static Future<void> sendCustomAttribute(Map<String, dynamic> value) {
  return _channel.invokeMethod(
    Constants.caseSendCustomAttribute,
    {Constants.value: value},
  );
}