TrackingData constructor
TrackingData({})
Implementation
factory TrackingData({
$core.String? key,
$core.List<$core.int>? bytes,
$core.bool? bool_3,
$1.Timestamp? timestamp,
$core.double? double_5,
$3.UUID? guid,
$core.int? integer,
$fixnum.Int64? long,
$core.String? string,
}) {
final result = create();
if (key != null) result.key = key;
if (bytes != null) result.bytes = bytes;
if (bool_3 != null) result.bool_3 = bool_3;
if (timestamp != null) result.timestamp = timestamp;
if (double_5 != null) result.double_5 = double_5;
if (guid != null) result.guid = guid;
if (integer != null) result.integer = integer;
if (long != null) result.long = long;
if (string != null) result.string = string;
return result;
}