DevAdd constructor
DevAdd({})
Implementation
DevAdd(
{required this.uuid,
String? nickname,
this.ip,
String? username,
this.password,
int? type,
int? port,
this.deviceToken,
this.extinfo})
: nickname = nickname ?? uuid,
username = username ?? "admin",
type = type ?? 0,
port = port ?? 34567;