CreateOrderBody constructor

const CreateOrderBody({
  1. @required String? amount,
  2. @required String? buyerEmail,
  3. @required String? buyerName,
  4. @required String? buyerPhone,
  5. @required String? description,
})

Implementation

const CreateOrderBody({
  @required this.amount,
  @required this.buyerEmail,
  @required this.buyerName,
  @required this.buyerPhone,
  @required this.description,
});