SuccessMessageWidget constructor

const SuccessMessageWidget({
  1. Key? key,
  2. String? message,
  3. double? topSpacing,
  4. double? bottomSpacing,
  5. required AbsNormalStatus absNormalStatus,
  6. bool isInfo = false,
})

Implementation

const SuccessMessageWidget({
  super.key,
  this.message,
  this.topSpacing,
  this.bottomSpacing,
  required this.absNormalStatus,
  this.isInfo = false,
});