PropertyAnimation constructor

const PropertyAnimation({
  1. required AnimatableProperty property,
  2. required double from,
  3. required double to,
})

Implementation

const PropertyAnimation({
  required this.property,
  required this.from,
  required this.to,
});