animationNames property

Set<String> get animationNames

Implementation

Set<String> get animationNames => model.animations
    .map((e) => e.name)
    .whereType<String>() // filter not null
    .toSet();