CPDFUiBorderStyle constructor

const CPDFUiBorderStyle({
  1. Color? nodeColor = const Color(0xFF6499FF),
  2. Color borderColor = const Color(0xFF6499FF),
  3. double borderWidth = 2,
  4. List<double> borderDashPattern = const [10, 10],
})

Implementation

const CPDFUiBorderStyle({
  this.nodeColor = const Color(0xFF6499FF),
  this.borderColor = const Color(0xFF6499FF),
  this.borderWidth = 2,
  this.borderDashPattern = const [10, 10],
});