EventLogger constructor

EventLogger({
  1. required String collectionName,
  2. required LocalEventLogger localLogger,
})

Implementation

EventLogger(
    {required String collectionName, required LocalEventLogger localLogger}) {
  _collectionName = collectionName;
  _localLogger = localLogger;
}