female static method

SvgPathReader female(
  1. BodyView view
)

Returns an SvgPathReader for the female body based on the specified view.

Implementation

static SvgPathReader female(BodyView view) {
  return switch (view) {
    BodyView.front => femaleFront(),
    BodyView.back => femaleBack(),
    _ => throw UnimplementedError('Female View $view not implemented!'),
  };
}