toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DirectorySize.small:
      return 'Small';
    case DirectorySize.large:
      return 'Large';
  }
}