DialScreen.forCastDevice constructor

DialScreen.forCastDevice(
  1. String ip,
  2. String deviceName
)

Uses new DialScreen and makes your ip to an uri with http and port 8008

Implementation

factory DialScreen.forCastDevice(String ip, String deviceName) {
  return DialScreen(Uri.parse('http://$ip:8008/'), deviceName);
}