FastTopMessage constructor

const FastTopMessage({
  1. Key? key,
  2. required String message,
  3. String? title,
  4. Color? backgroundColor,
  5. double? radius,
})

Implementation

const FastTopMessage({
  super.key,
  required this.message,
  this.title,
  this.backgroundColor,
  this.radius,
});