AndroidSettings constructor

const AndroidSettings({
  1. required String channelId,
  2. required String channelName,
  3. bool? badge,
  4. String? channelDescription,
  5. bool? lights,
  6. Color? lightColor,
  7. String playSound = 'default',
  8. AndroidImportance? importance,
  9. AndroidVisibility? visibility,
  10. bool? vibrate,
  11. Int64List? vibrationPattern,
})

Implementation

const AndroidSettings({
  required this.channelId,
  required this.channelName,
  this.badge,
  this.channelDescription,
  this.lights,
  this.lightColor,
  this.playSound = 'default',
  this.importance,
  this.visibility,
  this.vibrate,
  this.vibrationPattern,
});