brightness property

Brightness brightness
final

The brightness of the overall theme of the application for the barcode widgets.

If brightness is not specified, then based on the Theme.of(context).brightness, brightness for barcode widgets will be applied.

Also refer Brightness.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           barcodeThemeData: SfBarcodeThemeData(
             brightness: Brightness.dark
             ),
           ),
         child: SfBarcodeGenerator(
           value: 'www.sycfusion.com',
           symbology: QRCode() ,
           showValue: true,
         ),
       ),
     )
  );
}

Implementation

final Brightness brightness;