RumAction constructor

RumAction({
  1. RumCount? crash,
  2. RumCount? error,
  3. RumActionFrustration? frustration,
  4. String? id,
  5. int? loadingTime,
  6. RumCount? longTask,
  7. RumCount? resource,
  8. RumActionTarget? target,
  9. required RumActionTypeInternal type,
})

Implementation

RumAction({
  this.crash,
  this.error,
  this.frustration,
  this.id,
  this.loadingTime,
  this.longTask,
  this.resource,
  this.target,
  required this.type,
});