HmsAnimation constructor

HmsAnimation({
  1. required String animationId,
  2. required String type,
  3. int? duration,
  4. int? fillMode,
  5. int? repeatCount,
  6. int? repeatMode,
  7. int? interpolator,
})

Implementation

HmsAnimation({
  required this.animationId,
  required this.type,
  this.duration,
  this.fillMode,
  this.repeatCount,
  this.repeatMode,
  this.interpolator,
});