FocusThemeData constructor

const FocusThemeData({
  1. BorderRadius? borderRadius,
  2. BorderSide? primaryBorder,
  3. BorderSide? secondaryBorder,
  4. Color? glowColor,
  5. double? glowFactor,
  6. bool? renderOutside,
})

Implementation

const FocusThemeData({
  this.borderRadius,
  this.primaryBorder,
  this.secondaryBorder,
  this.glowColor,
  this.glowFactor,
  this.renderOutside,
}) : assert(glowFactor == null || glowFactor >= 0);