PalEvents.instance constructor

PalEvents.instance()

Implementation

factory PalEvents.instance() {
  if(_instance == null) {
    _instance = PalEvents._();
  }
  return _instance!;
}