I'm writing a code in flutter and don't know what is the difference between them
` Future senddata(BluetoothDevice d) async {
BluetoothConnection? connection;
connection = await BluetoothConnection.toAddress(d.address);
connection.output.add(Uint8List.fromList(utf8.encode("irgendwas")));
await connection.output.allSent;
} `