fetchFlags method

Future<void> fetchFlags()

Implementation

Future<void> fetchFlags() async {
  /// Delegate the action to strategy
  return _visitorDelegate.synchronizeModifications().then((error) {
    if (error == null) {
      _flagSyncStatus = FlagSyncStatus.FLAGS_FETCHED;
    }
  });
}