sendCustomReportMessage method
This function is in the beta stage with a free trial. The ability provided in its beta test version is reporting a maximum of 10 message pieces within 6 seconds, with each message piece not exceeding 256 bytes and each string not exceeding 100 bytes. To try out this function, contact support@wuji.co and discuss the format of customized messages with us.
Implementation
@override
Future<void> sendCustomReportMessage(
String id, String category, String event, String label, int value) {
return _invokeMethod('sendCustomReportMessage', {
'id': id,
'category': category,
'event': event,
'label': label,
'value': value
});
}