flutter_data_json_api_adapter

Last updated:

0 purchases

flutter_data_json_api_adapter Image
flutter_data_json_api_adapter Images
Add to Cart

Description:

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.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.