Record static method
void
Record()
Implementation
static void Record(int type, int category, int subCategory, String? name, int value, String? customPayload) {
_methodChannel.invokeMapMethod('record', {
"type": type,
"category": category,
"subCategory": subCategory,
"name": name,
"value": value,
"customPayload": customPayload
});
}