WaitingScreen constructor

const WaitingScreen(
  1. {Key? key,
  2. required String transferName,
  3. required List<XFile> files}
)

Creates a new instance of the WaitingScreen widget.

The transferName parameter is the name of the transfer. The files parameter is the list of files being transferred.

Implementation

const WaitingScreen(
    {Key? key, required this.transferName, required this.files})
    : super(key: key);