Last updated:
0 purchases
keywords maker
keywords_maker #
https://pub.dev/packages/keywords_maker
About plugin #
By using this plugin in flutter dart you can generate keys words for any word. And also you will be able to generate keywords without case sensitive .that means any uppercase or lowercase character can be entered.
Example #
Getting Started #
Plugin usage #
Add to your pubspec.yaml in the dependencies section:
keywords_maker: latest-version
copied to clipboard
Get packages with command:
flutter packages get
copied to clipboard
Import:
import 'package:keywords_maker/keywords_maker.dart';
copied to clipboard
Functions #
Keywords without case sensitive:
List<String> result = Keywords.makeKeywordsFromWord(word);
copied to clipboard
Lower Case Keywords:
List<String> result = Keywords.makeKeywordsFromWordLowerCase(word);
copied to clipboard
Upper Case Keywords:
List<String> result = Keywords.makeKeywordsFromWordUpperCase(word);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.