EmptyPointSettings constructor

EmptyPointSettings({
  1. Color color = Colors.grey,
  2. EmptyPointMode mode = EmptyPointMode.gap,
  3. Color borderColor = Colors.transparent,
  4. double borderWidth = 0,
})

Creating an argument constructor of EmptyPointSettings class.

Implementation

EmptyPointSettings(
    {this.color = Colors.grey,
    this.mode = EmptyPointMode.gap,
    this.borderColor = Colors.transparent,
    this.borderWidth = 0});