IconToastWidget constructor

IconToastWidget({
  1. Key? key,
  2. Color? backgroundColor,
  3. Widget? textWidget,
  4. String message = '',
  5. double? height,
  6. double? width,
  7. required Icon icon,
  8. required String assetName,
  9. EdgeInsetsGeometry? padding,
})

Implementation

IconToastWidget({
  this.key,
  this.backgroundColor,
  this.textWidget,
  this.message = '',
  this.height,
  this.width,
  required this.icon,
  required this.assetName,
  this.padding,
}) : super(key: key);