CellBanner constructor
const
CellBanner({
- Key? key,
- ValueCell<
Widget?> ? child, - required ValueCell<
String> message, - ValueCell<
TextDirection?> ? textDirection, - required ValueCell<
BannerLocation> location, - ValueCell<
TextDirection?> ? layoutDirection, - ValueCell<
Color> color = const ValueCell.value(Color(0xA0B71C1C)), - ValueCell<
TextStyle> textStyle = const ValueCell.value(TextStyle(color: Color(0xFFFFFFFF), fontSize: 12.0 * 0.85, fontWeight: FontWeight.w900, height: 1.0)),
Implementation
const CellBanner({
super.key,
this.child,
required this.message,
this.textDirection,
required this.location,
this.layoutDirection,
this.color = const ValueCell.value(Color(0xA0B71C1C)),
this.textStyle = const ValueCell.value(TextStyle(
color: Color(0xFFFFFFFF),
fontSize: 12.0 * 0.85,
fontWeight: FontWeight.w900,
height: 1.0)),
});