MotionToastBackground constructor

const MotionToastBackground({
  1. Key? key,
  2. required double borderRadius,
  3. required Color backgroundColor,
  4. required Widget child,
})

Implementation

const MotionToastBackground({
  Key? key,
  required this.borderRadius,
  required this.backgroundColor,
  required this.child,
}) : super(key: key);