StompFrame constructor

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

Implementation

StompFrame({
  required this.command,
  Map<String, String>? headers,
  this.body,
}) : headers = headers ?? <String, String>{};