HelperLineTheme constructor

const HelperLineTheme({
  1. Color horizontalColor = const Color(0xFF1565C0),
  2. Color verticalColor = const Color(0xFF1565C0),
  3. Color rotateColor = const Color(0xFFE91E63),
})

Creates an instance of the HelperLineTheme class with the specified theme properties.

Implementation

const HelperLineTheme({
  this.horizontalColor = const Color(0xFF1565C0),
  this.verticalColor = const Color(0xFF1565C0),
  this.rotateColor = const Color(0xFFE91E63),
});