update method
Implementation
Future<T> update(T entity) async {
return dio
.post(
'/update',
data: entity.toJSON(),
)
.then(
(response) => response.body<T>(),
);
}
Future<T> update(T entity) async {
return dio
.post(
'/update',
data: entity.toJSON(),
)
.then(
(response) => response.body<T>(),
);
}