FluoAnswerStyle constructor

const FluoAnswerStyle({
  1. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
  2. Color backgroundColor = const Color(0x09000000),
  3. Color? backgroundHighlightColor = const Color(0x12000000),
  4. Color backgroundSelectedColor = const Color(0xFFFFFF8D),
  5. Color borderColor = Colors.transparent,
  6. Color? borderHighlightColor = Colors.transparent,
  7. Color borderSelectedColor = Colors.black,
  8. EdgeInsets iconContainerPadding = const EdgeInsets.all(6),
  9. Color iconContainerColor = Colors.white,
  10. TextStyle? titleTextStyle,
})

Implementation

const FluoAnswerStyle({
  this.padding = const EdgeInsets.symmetric(
    horizontal: 20,
    vertical: 15,
  ),
  this.backgroundColor = const Color(0x09000000),
  this.backgroundHighlightColor = const Color(0x12000000),
  this.backgroundSelectedColor = const Color(0xFFFFFF8D),
  this.borderColor = Colors.transparent,
  this.borderHighlightColor = Colors.transparent,
  this.borderSelectedColor = Colors.black,
  this.iconContainerPadding = const EdgeInsets.all(6),
  this.iconContainerColor = Colors.white,
  this.titleTextStyle,
});