FlushbarRemoteEvent constructor

const FlushbarRemoteEvent({
  1. String? title,
  2. required String message,
  3. required Color backgroundColor,
  4. required Duration duration,
  5. required FlushbarPosition position,
  6. String? actionLabel,
  7. String? actionUrl,
  8. String? iconName,
  9. bool persistent = false,
})

Implementation

const FlushbarRemoteEvent({
  this.title,
  required this.message,
  required this.backgroundColor,
  required this.duration,
  required this.position,
  this.actionLabel,
  this.actionUrl,
  this.iconName,
  this.persistent = false,
});