copy method
Implementation
BluetoothDevice copy({
String? id,
String? name,
int? type,
String? alias,
BondState? bondState,
}) {
return BluetoothDevice(
id: id ?? this.id,
name: name ?? this.name,
type: type ?? this.type,
alias: alias ?? this.alias,
bondState: bondState ?? this.bondState,
);
}