LicensePlate constructor

const LicensePlate(
  1. String plate, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. String? locality = 'BRASIL',
  6. PlateCategory? category,
  7. Color? backgroundColor,
  8. Color? borderColor,
  9. Color? textColor,
  10. bool compact = false,
})

Implementation

const LicensePlate(
  this.plate, {
  super.key,
  this.width,
  this.height,
  this.locality = 'BRASIL',
  this.category,
  this.backgroundColor,
  this.borderColor,
  this.textColor,
  this.compact = false,
});