Request constructor

Request({
  1. Object? arguments,
  2. required String command,
  3. required int seq,
})

Implementation

Request({
  this.arguments,
  required this.command,
  required super.seq,
}) : super(
        type: 'request',
      );