value property

String get value

Implementation

String get value {
  switch (this) {
    case GifScale.small:
      return '320:-1';
    case GifScale.medium:
      return '480:-1';
    case GifScale.large:
      return '720:-1';
    case GifScale.original:
      return '-1:-1';
  }
}