Floater constructor
const
Floater({
- Key? key,
- Color? backgroundColor,
- double? elevation,
- BorderRadiusGeometry? radius,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- required Widget child,
Implementation
const Floater({
Key? key,
this.backgroundColor,
this.elevation,
this.radius,
this.margin,
this.padding,
required this.child,
}) : super(key: key);