previewLink property

String previewLink

Implementation

String get previewLink {
  switch (this) {
    case RootEnvironment.Staging:
      return 'https://directory.atsign.wtf/';
    case RootEnvironment.Production:
      return 'https://wavi.ng/';
    case RootEnvironment.Testing:
      return 'https://directory.atsign.wtf/';
    default:
      return 'https://directory.atsign.wtf/';
  }
}