toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (itemId != null) 'itemId': itemId!,
  if (quantity != null) 'quantity': quantity!,
  if (unitPrice != null) 'unitPrice': unitPrice!,
};