Shipping constructor

Shipping({
  1. required String name,
  2. String? description,
  3. required double amount,
})

Implementation

Shipping({required this.name, this.description, required this.amount});