parse static method

TtsDts parse(
  1. int dts
)

Implementation

static TtsDts parse(int dts) {
  for (TtsDts ttsDts in TtsDts.values) {
    if (ttsDts.index == dts) {
      return ttsDts;
    }
  }
  return TtsDts.independence;
}