SfBarcodeThemeData.raw constructor

const SfBarcodeThemeData.raw({
  1. required Brightness brightness,
  2. required Color backgroundColor,
  3. required Color barColor,
  4. required Color textColor,
})

Create a SfBarcodeThemeData given a set of exact values. All the values must be specified.

This will rarely be used directly. It is used by lerp to create intermediate themes based on two themes created with the SfBarcodeThemeData constructor.

Implementation

const SfBarcodeThemeData.raw({
  required this.brightness,
  required this.backgroundColor,
  required this.barColor,
  required this.textColor,
});