Message constructor

Message({
  1. required String api,
  2. dynamic data,
  3. String? callbackId,
  4. bool? isResponseFlag = false,
})

Implementation

Message({
  required this.api,
  this.data,
  this.callbackId,
  this.isResponseFlag = false,
});