DeviceInputDialog constructor

DeviceInputDialog({
  1. Key? key,
  2. required String wifiNameValue,
  3. required String password,
  4. required dynamic callback(
    1. String wifiName,
    2. String password
    ),
})

Implementation

DeviceInputDialog(
    {super.key,
    required this.wifiNameValue,
    required this.password,
    required this.callback});