Floater constructor

const Floater({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? elevation,
  4. BorderRadiusGeometry? radius,
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. required Widget child,
})

Implementation

const Floater({
  Key? key,
  this.backgroundColor,
  this.elevation,
  this.radius,
  this.margin,
  this.padding,
  required this.child,
}) : super(key: key);