SSE constructor

SSE({
  1. required String data,
  2. String id = '',
  3. String event = '',
  4. int retry = -1,
})

Implementation

SSE({
  required this.data,
  this.id = '',
  this.event = '',
  this.retry = -1,
});