dio property

Future<Dio> get dio

Returns a Dio client to use in queries.

Implementation

Future<Dio> get dio async {
  client ??= Dio(
    BaseOptions(headers: {if (!isWeb) 'User-Agent': await userAgent}),
  );

  return client!;
}