Message constructor

Message(
  1. dynamic objectType,
  2. dynamic mode,
  3. String? carrier,
  4. String? carrierAccountId,
  5. String? message,
  6. String? type
)

Implementation

Message(
  objectType,
  mode,
  this.carrier,
  this.carrierAccountId,
  this.message,
  this.type,
) : super(objectType, mode);