EventSubscribeRequest constructor Null safety

EventSubscribeRequest(
  1. {required int eventType,
  2. required int expiry,
  3. bool? syncCurrentValue,
  4. required List<String> publishers}
)

Implementation

EventSubscribeRequest(
    {required this.eventType,
    required this.expiry,
    this.syncCurrentValue,
    required this.publishers});