FastSuccessResult constructor

const FastSuccessResult({
  1. Key? key,
  2. double iconSize = kFastIconSizeXxl,
  3. Color? textColor,
  4. String? text,
  5. Widget? icon,
})

Implementation

const FastSuccessResult({
  super.key,
  this.iconSize = kFastIconSizeXxl,
  this.textColor,
  this.text,
  this.icon,
});