DottedBorder constructor

const DottedBorder({
  1. Key? key,
  2. required Widget child,
  3. DottedBorderOptions options = const RectDottedBorderOptions(),
  4. bool ignoring = true,
  5. Animation<double>? animation,
  6. bool childOnTop = true,
})

Implementation

const DottedBorder({
  super.key,
  required this.child,
  this.options = const RectDottedBorderOptions(),
  this.ignoring = true,
  this.animation,
  this.childOnTop = true,
});