DistributionProto_DistributionLog constructor
DistributionProto_DistributionLog({})
Implementation
factory DistributionProto_DistributionLog({
$fixnum.Int64? id,
$core.bool? error,
$27.Timestamp? date,
$core.String? uid,
$core.String? operator,
$core.String? msg,
$core.int? firmwareVersion,
$core.String? networkNumber,
$core.String? imei,
$core.String? simIccid,
$core.String? crc,
$core.String? type,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (error != null) {
$result.error = error;
}
if (date != null) {
$result.date = date;
}
if (uid != null) {
$result.uid = uid;
}
if (operator != null) {
$result.operator = operator;
}
if (msg != null) {
$result.msg = msg;
}
if (firmwareVersion != null) {
$result.firmwareVersion = firmwareVersion;
}
if (networkNumber != null) {
$result.networkNumber = networkNumber;
}
if (imei != null) {
$result.imei = imei;
}
if (simIccid != null) {
$result.simIccid = simIccid;
}
if (crc != null) {
$result.crc = crc;
}
if (type != null) {
$result.type = type;
}
return $result;
}