WebViewStyle constructor

const WebViewStyle({
  1. TextStyle? titleStyle,
  2. Color? appBarColor,
  3. Color? backIconColor,
  4. double? width,
  5. double? height,
  6. Color? background,
  7. BoxBorder? border,
  8. double? borderRadius,
  9. Gradient? gradient,
})

Implementation

const WebViewStyle({
  this.titleStyle,
  this.appBarColor,
  this.backIconColor,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});