SuccessNetworkEvent constructor
SuccessNetworkEvent({
- required int duration,
- required int startTime,
- required String httpRequestMethod,
- required String urlFull,
- required String networkProtocolName,
- required String traceId,
- required String spanId,
- required String? responseReasonPhrase,
- required int responseStatusCode,
- int? bytesSent,
- int? bytesReceived,
Constructor for success response event
Implementation
SuccessNetworkEvent({
required super.duration,
required super.startTime,
required super.httpRequestMethod,
required super.urlFull,
required super.networkProtocolName,
required super.traceId,
required super.spanId,
required this.responseReasonPhrase,
required this.responseStatusCode,
this.bytesSent,
this.bytesReceived,
});