LicensePlateRegionOutput constructor

const LicensePlateRegionOutput({
  1. bool showFlag = false,
  2. Key? key,
  3. required int region,
  4. required double size,
  5. Color? textColor,
})

Implementation

const LicensePlateRegionOutput({
  this.showFlag = false,
  Key? key,
  required this.region,
  required this.size,
  this.textColor,
}) : super(key: key);