toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ackId = this.ackId;
  final deliveryAttempt = this.deliveryAttempt;
  final message = this.message;
  return {
    'ackId': ?ackId,
    'deliveryAttempt': ?deliveryAttempt,
    'message': ?message,
  };
}