FContainer constructor

const FContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color,
  5. Widget? child,
  6. Border? border,
  7. double borderRadius = 5.0,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(5.0),
  9. EdgeInsetsGeometry? margin,
  10. GestureTapCallback? onTap,
})

Implementation

const FContainer(
    {Key? key,
    this.width,
    this.height,
    this.color,
    this.child,
    this.border,
    this.borderRadius = 5.0,
    this.padding = const EdgeInsets.all(5.0),
    this.margin,
    this.onTap})
    : super(key: key);