restoreFollowers static method

dynamic restoreFollowers()

Use this method to restore all followers by savedList of theres.

Implementation

static restoreFollowers() {
  if (_mapOverlayEntry.isEmpty) {
    Map<String, dynamic> construct = _mapOverlayEntryTwo;
    _mapOverlayEntryTwo.clear();
    construct.forEach((key, value) {
      show(
          child: value['child'],
          context: value['context'],
          identify: value['identify'],
          target: value['target'],
          align: value['align']);
    });
  }
}