website property
String
get
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';
}
}