OnMessage constructor

OnMessage({
  1. required Uint8List? messageId,
  2. required String? data,
  3. required String? src,
  4. required int? type,
  5. required bool? encrypted,
  6. required bool? noReply,
})

Implementation

OnMessage({
  required this.messageId,
  required this.data,
  required this.src,
  required this.type,
  required this.encrypted,
  required this.noReply,
});