UpiApps constructor

UpiApps({
  1. int? id,
  2. String? displayName,
  3. String? iconUrl,
  4. String? appUri,
  5. bool? isAvailable,
  6. String? scheme,
  7. Uint8List? imageData,
})

Default constructor for UpiApps

Implementation

UpiApps({
  this.id,
  this.displayName,
  this.iconUrl,
  this.appUri,
  this.isAvailable,
  this.scheme,
  this.imageData,
});