toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'id': id,
    'description': description,
    'quantity': quantity,
    'price_cents': priceCents,
    'price': price,
    'total': total,
    'recurrent': recurrent,
    '_destroy': destroy,
  };
}