str property

String get str

Implementation

String get str {
  switch (this) {
    case OS.android:
      return 'android';
    case OS.iOS:
      return 'iOS';
  }
}