SvgDebugAnimationDescriptor constructor

const SvgDebugAnimationDescriptor({
  1. required String type,
  2. required String attributeName,
  3. required int durationMs,
  4. required int beginMs,
  5. required String repeatCount,
  6. required bool active,
})

Implementation

const SvgDebugAnimationDescriptor({
  required this.type,
  required this.attributeName,
  required this.durationMs,
  required this.beginMs,
  required this.repeatCount,
  required this.active,
});