FluoInfoScreenStyle constructor

const FluoInfoScreenStyle({
  1. double contentWidth = 320,
  2. Color backgroundColor = Colors.white,
  3. EdgeInsets padding = const EdgeInsets.only(left: 20, right: 20, bottom: 40),
  4. double verticalSpacing = 20,
  5. TextStyle? titleTextStyle,
  6. TextStyle? subtitleTextStyle,
  7. ButtonStyle? continueButtonStyle,
})

Implementation

const FluoInfoScreenStyle({
  this.contentWidth = 320,
  this.backgroundColor = Colors.white,
  this.padding = const EdgeInsets.only(
    left: 20,
    right: 20,
    bottom: 40,
  ),
  this.verticalSpacing = 20,
  this.titleTextStyle,
  this.subtitleTextStyle,
  this.continueButtonStyle,
});