showNotification method

Future<void> showNotification({
  1. required String title,
  2. required String body,
  3. String? icon,
  4. String id = 'mcp_notification',
})

Show notification

Implementation

Future<void> showNotification({
  required String title,
  required String body,
  String? icon,
  String id = 'mcp_notification',
}) {
  throw UnimplementedError('showNotification() has not been implemented.');
}