rdev_feature_toggles 0.2.4
rdev_feature_toggles: ^0.2.4 copied to clipboard
This package provides a simple way use feature togges in Firestore
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add rdev_feature_toggles
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
rdev_feature_toggles: ^0.2.4
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:rdev_feature_toggles/application/feature_toggles_data_service.dart';
import 'package:rdev_feature_toggles/application/feature_toggles_service.dart';
import 'package:rdev_feature_toggles/domain/feature_toggle_entry_model.dart';
import 'package:rdev_feature_toggles/domain/feature_toggle_entry_model.g.dart';
import 'package:rdev_feature_toggles/domain/feature_toggle_model.dart';
import 'package:rdev_feature_toggles/domain/feature_toggle_model.g.dart';
import 'package:rdev_feature_toggles/domain/feature_toggle_vo.dart';