DataUsageModel constructor

DataUsageModel({
  1. String? appName,
  2. String? packageName,
  3. Uint8List? appIconBytes,
  4. int? received,
  5. int? sent,
})

Implementation

DataUsageModel({
  this.appName,
  this.packageName,
  this.appIconBytes,
  this.received,
  this.sent,
});