getGroupTypeValue method

int getGroupTypeValue(
  1. GroupType? groupType
)

Implementation

int getGroupTypeValue(GroupType? groupType) {
  if (groupType == GroupType.TYPE_INTERVALS) {
    return 5;
  }
  return 1;
}