Device constructor
Device({})
Implementation
factory Device({
$core.String? deviceId,
$core.String? chainId,
$core.String? boutiqueId,
$core.bool? status,
$core.String? password,
$0.Timestamp? timestamp,
HardwareInfo? hardwareInfo,
}) {
final result = create();
if (deviceId != null) result.deviceId = deviceId;
if (chainId != null) result.chainId = chainId;
if (boutiqueId != null) result.boutiqueId = boutiqueId;
if (status != null) result.status = status;
if (password != null) result.password = password;
if (timestamp != null) result.timestamp = timestamp;
if (hardwareInfo != null) result.hardwareInfo = hardwareInfo;
return result;
}