PaymobIframe constructor

PaymobIframe({
  1. required int iframeId,
  2. required int integrationId,
  3. String? name,
  4. String? description,
})

Constructs a PaymobIframe object with the provided data.

Implementation

PaymobIframe({
  required this.iframeId,
  required this.integrationId,
  this.name,
  this.description,
});