parseCustomAnimationControl function

Control? parseCustomAnimationControl(
  1. String str
)

Implementation

Control? parseCustomAnimationControl(String str) {
  Control? control;
  Control.values.forEach((element) {
    if (element.toJson() == str) control = element;
  });
  return control;
}