AsInformer constructor

AsInformer({
  1. int? type,
  2. String? text,
  3. Color? color,
  4. Color? containerColor,
  5. Color? backgroundColor,
  6. double? borderRadius,
})

Implementation

AsInformer(
  {
    this.type,
    this.text,
    this.color,
    this.containerColor,
    this.backgroundColor,
    this.borderRadius,
  }
);