ShapeBorderPaint constructor

const ShapeBorderPaint({
  1. Key? key,
  2. TextDirection? textDirection,
  3. bool isForeground = true,
  4. double? inflate,
  5. required OutlinedBorder shape,
  6. Widget? child,
})

Implementation

const ShapeBorderPaint({
  Key? key,
  this.textDirection,
  this.isForeground = true,
  this.inflate,
  required this.shape,
  this.child,
}) : super(key: key);