value property

String get value

Implementation

String get value {
  switch (this) {
    case GifLoop.once:
      return '1';
    case GifLoop.infinite:
      return '0';
  }
}