Last updated:
0 purchases
gomarketme
GoMarketMe #
[![License: MIT][license_badge]][license_link]
Installation 💻 #
❗ In order to start using GoMarketMe, you must install this SDK in your app.
Run this command:
flutter pub add gomarketme
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
gomarketme: ^1.3.1
copied to clipboard
Usage 🚀 #
Initialization #
To initialize GoMarketMe, import the gomarketme package and create a new instance of GoMarketMe:
import 'package:gomarketme/gomarketme.dart';
Future<void> main() async {
await new GoMarketMe().initialize(API_KEY);
runApp(const MyApp());
}
copied to clipboard
Make sure to replace API_KEY with your actual GoMarketMe API key. You can find it on the product onboarding page and under Profile > API Key.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.