ExAppModel constructor

ExAppModel({
  1. required String versionCode,
  2. required String versionName,
  3. required String version,
  4. required String packageName,
  5. required String appName,
  6. required DateTime? installTime,
  7. required DateTime? updateTime,
  8. String? installedFromStore,
})

Creates a new ExAppModel instance with the provided application details.

Implementation

ExAppModel({
  required this.versionCode,
  required this.versionName,
  required this.version,
  required this.packageName,
  required this.appName,
  required this.installTime,
  required this.updateTime,
  this.installedFromStore,
});