@override Future<Result<AppConfig>> getConfig() { const path = 'v1/config'; return http.get( uri: Uri.parse('$baseUrl/$path').toString(), success: (json) => AppConfig.fromJson(json), ); }