RoundedFrame constructor

const RoundedFrame({
  1. Key? key,
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. double? width,
  5. double? height,
  6. Widget? child,
  7. Color? color,
  8. BorderRadius borderRadius = BorderRadius.zero,
  9. Color borderColor = Colors.transparent,
  10. double elevation = 0.0,
  11. MaterialType? materialType,
})

Implementation

const RoundedFrame({
  Key? key,
  this.margin,
  this.padding,
  this.width,
  this.height,
  this.child,
  this.color,
  this.borderRadius = BorderRadius.zero,
  this.borderColor = Colors.transparent,
  this.elevation = 0.0,
  this.materialType,
}) : super(key: key);