value property

String get value

Implementation

String get value {
  switch (this) {
    case SampleQueryOption.strictStartDate:
      return "strictStartDate";
    case SampleQueryOption.strictEndDate:
      return "strictEndDate";
    case SampleQueryOption.notStrict:
      return "notStrict";
  }
}