ellipse method

VxEllipse ellipse({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double? width,
  5. double? height,
  6. BoxBorder? border,
  7. BoxDecoration? customDecoration,
  8. DecorationImage? backgroundImage,
  9. BlendMode? blendMode,
  10. Gradient? gradient,
  11. List<BoxShadow>? shadows,
})

Extension method to directly access VxEllipse with any widget without wrapping or with dot operator.

Implementation

VxEllipse ellipse({
  Key? key,
  Widget? child,
  Color? backgroundColor,
  double? width,
  double? height,
  BoxBorder? border,
  BoxDecoration? customDecoration,
  DecorationImage? backgroundImage,
  BlendMode? blendMode,
  Gradient? gradient,
  List<BoxShadow>? shadows,
}) =>
    VxEllipse(
      key: key,
      child: this,
      backgroundColor: backgroundColor,
      border: border,
      customDecoration: customDecoration,
      width: width,
      height: height,
      backgroundImage: backgroundImage,
      blendMode: blendMode,
      gradient: gradient,
      shadows: shadows,
    );