send static method
Implementation
static Future<void> send({required title, required message, required channel}) async {
await _methodChannel.invokeMethod('notif', {'title': title, 'message': message, 'channel': channel});
}
static Future<void> send({required title, required message, required channel}) async {
await _methodChannel.invokeMethod('notif', {'title': title, 'message': message, 'channel': channel});
}