ResultModel constructor

ResultModel({
  1. required ResultType? type,
  2. int? max,
  3. int? progress,
  4. String? apk,
  5. String? exception,
})

Implementation

ResultModel({
  required this.type,
  this.max,
  this.progress,
  this.apk,
  this.exception,
});