CustomAnimationToast constructor

const CustomAnimationToast({
  1. Key? key,
  2. required double value,
  3. Widget child = const IosStyleToast(),
})

Implementation

const CustomAnimationToast({
  Key? key,
  required this.value,
  this.child = const IosStyleToast(),
}) : super(key: key);