AssemblyPainter constructor

AssemblyPainter({
  1. required double assemblyAngle,
  2. required int assemblyElements,
  3. required double assemblyWidth,
  4. required double viewWidth,
  5. List<IndividualVotes>? individualVotes,
  6. List<GroupSectors>? groupSectors,
  7. List<GroupSectors>? superGroupSectors,
  8. required int nbRows,
  9. bool? useGroupSector,
  10. required double backgroundOpacity,
  11. required Color backgroundColor,
  12. bool? hiliteFronde,
})

Implementation

AssemblyPainter(
    {required this.assemblyAngle,
    required this.assemblyElements,
    required this.assemblyWidth,
    required this.viewWidth,
    this.individualVotes,
    this.groupSectors,
    this.superGroupSectors,
    required this.nbRows,
    this.useGroupSector,
    required this.backgroundOpacity,
    required this.backgroundColor,
    this.hiliteFronde})
    : super();