CustomJumpLine constructor

const CustomJumpLine({
  1. Key? key,
  2. int times = 1,
})

Creates a CustomJumpLine widget.

The times parameter determines how many blank lines to insert. Defaults to 1 if not specified.

Implementation

const CustomJumpLine({super.key, this.times = 1});