description property

String description

Implementation

String get description {
  switch (this) {
    case BiologicalSex.notSet:
      return 'na';
    case BiologicalSex.female:
      return 'Female';
    case BiologicalSex.male:
      return 'Male';
    case BiologicalSex.other:
      return 'Other';
  }
}