ConnectionScreen constructor

const ConnectionScreen({
  1. Key? key,
  2. required String port,
  3. required String secret,
})

Implementation

const ConnectionScreen({
  super.key,
  required this.port,
  required this.secret,
});