swagger_to_dart 2.0.1
swagger_to_dart: ^2.0.1 copied to clipboard
Convert Swagger to Dart using freezed and retrofit support only 3.1.0 openApi
example/lib/main.dart
import 'package:dio/dio.dart';
Future<void> main(List<String> args) async {
final dio = Dio();
dio.options.baseUrl = 'http://0.0.0.0:8004';
// final apiClient = AdvancedClient(dio);
// final response = await apiClient.advancedDependsQuery(
// q: 'test',
// skip: 0,
// limit: 10,
// );
// print(response.data);
}