config.dart 233 B

1234567891011
  1. class Config {
  2. static final ENV_DEV = Config("http://test-shoes-api.hiyd.com");
  3. static final ENV_TEST = Config("http://test-shoes-api.hiyd.com");
  4. static Config config = ENV_TEST;
  5. String baseUrl;
  6. Config(this.baseUrl);
  7. }