suggestion_providers 0.0.1
suggestion_providers: ^0.0.1 copied to clipboard
Get search suggestions from search engines, like google, duckduckgo and more.
example/suggestion_providers_example.dart
import 'package:suggestion_providers/suggestion_providers.dart';
void main() async {
var suggestions = Suggestions();
print(await suggestions.google.suggestions("Hello"));
}