WebsocketDialogPage constructor

const WebsocketDialogPage(
  1. {required String address,
  2. required dynamic onConnect(
    1. String
    ),
  3. Key? key}
)

Create an instance of this page.

Implementation

const WebsocketDialogPage({
  required this.address,
  required this.onConnect,
  super.key,
});