Pay constructor

Pay({
  1. double? amount,
  2. String? currency,
})

Implementation

Pay({
  this.amount,
  this.currency,
});