EmptyPointSettings constructor

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

Creating an argument constructor of EmptyPointSettings class.

Implementation

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