SfBarcodeThemeData.raw constructor
const
SfBarcodeThemeData.raw({
- required Brightness brightness,
- required Color backgroundColor,
- required Color barColor,
- 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,
});