toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final delay = this.delay;
  final priority = this.priority;
  final queueReference = this.queueReference;
  return {
    'Delay': delay,
    'Priority': priority,
    'QueueReference': queueReference,
  };
}