HighlightOnUpdateTheme constructor

const HighlightOnUpdateTheme({
  1. Key? key,
  2. required Widget child,
  3. Color? from = kDefaultFromColor,
  4. Color? to = kDefaultToColor,
  5. Duration? inDuration = kDefaultInDuration,
  6. Duration? waitDuration = kDefaultWaitDuration,
  7. Duration? outDuration = kDefaultOutDuration,
  8. Curve? inCurve = kDefaultInCurve,
  9. Curve? outCurve = kDefaultOutCurve,
  10. BorderRadius? borderRadius = kDefaultBorderRadius,
  11. bool? updateAfterHighlighting,
})

Implementation

const HighlightOnUpdateTheme({
  super.key,
  required super.child,
  this.from = kDefaultFromColor,
  this.to = kDefaultToColor,
  this.inDuration = kDefaultInDuration,
  this.waitDuration = kDefaultWaitDuration,
  this.outDuration = kDefaultOutDuration,
  this.inCurve = kDefaultInCurve,
  this.outCurve = kDefaultOutCurve,
  this.borderRadius = kDefaultBorderRadius,
  this.updateAfterHighlighting,
});