FocusDecoration constructor

const FocusDecoration({
  1. Color? color,
  2. DecorationImage? image,
  3. BoxBorder? focusBorder,
  4. BorderRadiusGeometry? borderRadius,
  5. BoxBorder? unFocusBorder,
  6. List<BoxShadow>? boxShadow,
  7. Gradient? gradient,
  8. BlendMode? backgroundBlendMode,
  9. BoxShape shape = BoxShape.rectangle,
})

Implementation

const FocusDecoration({
  this.color,
  this.image,
  this.focusBorder,
  this.borderRadius,
  this.unFocusBorder,
  this.boxShadow,
  this.gradient,
  this.backgroundBlendMode,
  this.shape = BoxShape.rectangle,
});