get method

Future<T> get()

Implementation

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