BannerToastWidget constructor

BannerToastWidget({
  1. Key? key,
  2. Color? backgroundColor,
  3. required Widget textWidget,
  4. String message = '',
  5. double? height,
  6. double? width,
})

Implementation

BannerToastWidget(
    {this.key,
    this.backgroundColor,
    required this.textWidget,
    this.message = '',
    this.height,
    this.width})
    : super(key: key);