NiceApiExplorer constructor
const
NiceApiExplorer({
- Key? key,
- required String title,
- required List<
ApiEndpoint> endpoints, - String? baseUrl,
- Future<
ApiResponse> onRequest(- ApiEndpoint ep,
- Map<
String, String> params, - String? body
- bool showSearch = true,
Implementation
const NiceApiExplorer({
super.key,
required this.title,
required this.endpoints,
this.baseUrl,
this.onRequest,
this.showSearch = true,
});