AnimatedSampler constructor

const AnimatedSampler(
  1. AnimatedSamplerBuilder builder, {
  2. required Widget child,
  3. Key? key,
  4. bool enabled = true,
})

Create a new AnimatedSampler.

Implementation

const AnimatedSampler(
  this.builder, {
  required this.child,
  super.key,
  this.enabled = true,
});