GuideFrame constructor

const GuideFrame({
  1. Key? key,
  2. required CarPartDirectionEnum carPartDirectionEnum,
  3. required String rangeShot,
  4. bool showDirectionInfo = true,
  5. List<CarPartHasDamageModel> carPartsForCloseUpShot = const [],
  6. dynamic onPartSelected(
    1. CarPartHasDamageModel value
    )?,
  7. CarPartHasDamageModel? currentPartSeleted,
  8. CarModelEnum? carModel,
})

Implementation

const GuideFrame({
  super.key,
  required this.carPartDirectionEnum,
  required this.rangeShot,
  this.showDirectionInfo = true,
  this.carPartsForCloseUpShot = const [],
  this.onPartSelected,
  this.currentPartSeleted,
  this.carModel,
});