ExpressMethod constructor

ExpressMethod({
  1. String? id,
  2. String? title,
  3. bool? isSelected,
  4. bool? confirmationRequired,
  5. List<String>? icons,
  6. MethodType? type,
  7. List<InputField>? requiredBillingData,
})

Implementation

ExpressMethod({
  this.id,
  this.title,
  this.isSelected,
  this.confirmationRequired,
  this.icons,
  this.type,
  this.requiredBillingData,
});