FastResult constructor

const FastResult({
  1. Key? key,
  2. Color? textColor,
  3. String? text,
  4. Widget? icon,
})

Implementation

const FastResult({
  super.key,
  this.textColor,
  this.text,
  this.icon,
});