stringValue property

String get stringValue

The string value.

Implementation

String get stringValue {
  switch (this) {
    case EditorPreset.design:
      return 'design';
    case EditorPreset.photo:
      return 'photo';
    case EditorPreset.postcard:
      return 'postcard';
    case EditorPreset.apparel:
      return 'apparel';
    case EditorPreset.video:
      return 'video';
  }
}