NotificationChannel constructor

NotificationChannel({
  1. required String id,
  2. required String name,
  3. String? description,
  4. String? icon,
  5. Color? color,
  6. String? ticker,
})

Creates a NotificationChannel.

Implementation

NotificationChannel(
    {required this.id,
    required this.name,
    this.description,
    this.icon,
    this.color,
    this.ticker});