toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final allocatedUsageQuantity = this.allocatedUsageQuantity;
  final tags = this.tags;
  return {
    'AllocatedUsageQuantity': allocatedUsageQuantity,
    if (tags != null) 'Tags': tags,
  };
}