IForeventsAPIIntegration constructor

IForeventsAPIIntegration({
  1. required IForeventsAPIConfig config,
})

Implementation

factory IForeventsAPIIntegration({required IForeventsAPIConfig config}) {
  _instance ??= IForeventsAPIIntegration._internal(config: config);
  return _instance!;
}