Payment constructor

Payment(
  1. {String? executeUrl,
  2. String? approvalUrl,
  3. required bool status}
)

Implementation

Payment({
  this.executeUrl,
  this.approvalUrl,
  required this.status,
});