VFlagProperties constructor

VFlagProperties({
  1. TextStyle? titleTextStyle,
  2. TextStyle? descriptionTextStyle,
  3. TextStyle? linkTextStyle,
  4. EdgeInsetsGeometry? closeIconPadding = const EdgeInsets.all(14),
  5. VButtonStyle? linkStyle = const VButtonStyle(padding: EdgeInsets.fromLTRB(0, 0, 0, 0), backgroundColorActive: VColors.transparent, overlayColorPressed: Color(0x99B3D7FF)),
})

Implementation

VFlagProperties({
  this.titleTextStyle,
  this.descriptionTextStyle,
  this.linkTextStyle,
  this.closeIconPadding = const EdgeInsets.all(14),
  this.linkStyle = const VButtonStyle(
    padding: EdgeInsets.fromLTRB(0, 0, 0, 0),
    backgroundColorActive: VColors.transparent,
    overlayColorPressed: Color(0x99B3D7FF),
  ),
});