FloatingModal constructor

const FloatingModal({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
})

Implementation

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