App constructor

App({
  1. String? aid,
  2. String? name,
  3. int? versionCode,
  4. String? version,
  5. String? avatar,
  6. String? url,
  7. String? status,
  8. String? tip,
  9. bool? forceUpgrade,
})

Implementation

App(
    {this.aid,
    this.name,
    this.versionCode,
    this.version,
    this.avatar,
    this.url,
    this.status,
    this.tip,
    this.forceUpgrade})
    : super();