notify static method

Future<void> notify({
  1. String title = 'quick_notify',
  2. String? content,
})

Implementation

static Future<void> notify({
  String title = 'quick_notify',
  String? content,
}) =>
    _platform.notify(
      title: title,
      content: content,
    );