setAddress method
A method to set an internet address on the platform.
Implementation
@override
Future<void> setAddress(InternetAddress connection) async {
await methodChannel.invokeMethod(
'set_address',
<String, dynamic>{
'address': connection.address,
'port': 44700,
},
);
}