website property

String website

Implementation

String get website {
  switch (this) {
    case RootEnvironment.Staging:
      return 'https://atsign.wtf';
    case RootEnvironment.Production:
      return 'https://atsign.com';
    case RootEnvironment.Testing:
      return 'https://atsign.wtf';
    default:
      return 'https://atsign.wtf';
  }
}