notify static method

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

Implementation

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