Metrics constructor
Metrics({})
Implementation
factory Metrics({
_i2.dynamic ops,
_i2.num? opsDispatched,
_i2.num? opsDispatchedSync,
_i2.num? opsDispatchedAsync,
_i2.num? opsDispatchedAsyncUnref,
_i2.num? opsCompleted,
_i2.num? opsCompletedSync,
_i2.num? opsCompletedAsync,
_i2.num? opsCompletedAsyncUnref,
_i2.num? bytesSentControl,
_i2.num? bytesSentData,
_i2.num? bytesReceived,
}) =>
Metrics._(
ops: ops,
opsDispatched: opsDispatched,
opsDispatchedSync: opsDispatchedSync,
opsDispatchedAsync: opsDispatchedAsync,
opsDispatchedAsyncUnref: opsDispatchedAsyncUnref,
opsCompleted: opsCompleted,
opsCompletedSync: opsCompletedSync,
opsCompletedAsync: opsCompletedAsync,
opsCompletedAsyncUnref: opsCompletedAsyncUnref,
bytesSentControl: bytesSentControl,
bytesSentData: bytesSentData,
bytesReceived: bytesReceived,
);