createTestEnvironment static method
Implementation
static BaseEnvironment createTestEnvironment() {
return BaseEnvironment(
baseUrl: 'jsonplaceholder.typicode.com', // Test API
platformPath: '', // No platform path for this API
headers: {
'Accept': 'application/json',
},
);
}