rest_simplified 0.0.8 rest_simplified: ^0.0.8 copied to clipboard
A Simplified Rest approach for Flutter. The concept of this package is to easily map json to bean and vice-versa.
Rest Simplified is a simple library to help accessing a REST Full backend.
The current version is experimental. Do not use it for production yet.
Example, used for test:
RestSimplified rs = RestSimplified.build('https://catfact.ninja');
rs.addFromJsonMapParser<CatFact>(CatFactJsonMapper());
rs.addPath<CatFact>(Protocol.get, '/fact');
ServiceResult result = await rs.getRestAccessor().get<CatFact>();
expect(result.httpCode, 200);
CatFact catFact = result.entity;
expect(catFact.fact!.length, catFact.length);
print(catFact.fact);