PayEntity constructor

PayEntity({
  1. required String? appId,
  2. String? description,
  3. ActionEntity? succeeded,
  4. ActionEntity? payAction,
  5. String? shopId,
  6. StorageConditionsEntity? conditions,
})

Implementation

PayEntity({
  required this.appId,
  this.description,
  this.succeeded,
  this.payAction,
  this.shopId,
  this.conditions,
});