StompFrame constructor

StompFrame({
  1. required String command,
  2. Map<String, String> headers = const {},
  3. String? body,
  4. Uint8List? binaryBody,
})

Implementation

StompFrame({
  required this.command,
  this.headers = const {},
  this.body,
  this.binaryBody,
});