Last updated:
0 purchases
flutter data json api adapter
flutter_data_json_api_adapter #
JSON:API adapter for Flutter Data.
👩🏾💻 Usage #
Add flutter_data_json_api_adapter to your pubspec.yaml and then import the adapter into your models.
Example:
@JsonSerializable()
@DataRepository([JSONAPIAdapter, MyJSONAPIAdapter])
class User with DataModel<User> {
@override
final int id;
final String name;
User({this.id, this.name});
}
mixin MyJSONAPIAdapter on RemoteAdapter<User> {
@override
String get baseUrl => "https://my.jsonapi.server/api";
// other customizations
}
copied to clipboard
This adapter provides default application/vnd.api+json headers.
Tests can be run with: pub run test
📝 License #
See LICENSE.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.