ThreeColumnTextBar.dark constructor
Constructs a ThreeColumnTextBar with dark background and effects.
Implementation
ThreeColumnTextBar.dark({
@required BuildContext context,
String c1LabelText = 'labelText',
String c1DataText = 'dataText',
String c2LabelText = 'labelText',
String c2DataText = 'dataText',
String c3LabelText = 'labelText',
String c3DataText = 'dataText',
ScalePreset scalePreset = ScalePreset.small,
double holderBorderRadius = 0.0,
bool showHangingDivider = true,
}) : this(
context: context,
c1LabelText: c1LabelText,
c1DataText: c1DataText,
c2LabelText: c2LabelText,
c2DataText: c2DataText,
c3LabelText: c3LabelText,
c3DataText: c3DataText,
scalePreset: scalePreset,
holderBorderRadius: holderBorderRadius,
showHangingDivider: showHangingDivider,
// Pre-configured.
holderColor: Colors.black,
labelTextColor: Colors.yellow,
dataTextColor: Colors.white,
);