fromValue static method

Weight fromValue(
  1. int value
)

Implementation

static Weight fromValue(int value) {
  switch (value) {
    case 65534:
      return Weight.calculating;
    default:
      throw ArgumentError.value(value);
  }
}