AppsModel constructor

AppsModel({
  1. bool? isSystemApp,
  2. String? appName,
  3. int? lastUpdateTime,
  4. int? versionCode,
  5. String? versionName,
  6. String? packageName,
})

Implementation

AppsModel(
    {this.isSystemApp,
    this.appName,
    this.lastUpdateTime,
    this.versionCode,
    this.versionName,
    this.packageName});