RumSession constructor

RumSession({
  1. bool? hasReplay,
  2. required String id,
  3. required String type,
})

Implementation

RumSession({
  this.hasReplay,
  required this.id,
  required this.type,
});