name property

String name

Name of the channel

Implementation

String get name {
  switch (this) {
    case Channel.stable:
      return 'stable';
    case Channel.dev:
      return 'dev';
    case Channel.beta:
      return 'beta';
    default:
      return '';
  }
}