UpiAppModel constructor

UpiAppModel({
  1. required String packageName,
  2. required String appName,
  3. String? icon,
})

Implementation

UpiAppModel({
  required this.packageName,
  required this.appName,
  this.icon,
});