toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case NumberSelectionBehavior.preferSticky:
      return 'PreferSticky';
    case NumberSelectionBehavior.avoidSticky:
      return 'AvoidSticky';
  }
}