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