OrganizationDetailsModel constructor

OrganizationDetailsModel({
  1. required List<Document> organizations,
  2. required int deviceCount,
  3. required int motherCount,
  4. required int testCount,
  5. required int doctorCount,
})

Creates an OrganizationDetailsModel with the given details and statistics.

Implementation

OrganizationDetailsModel({
  required this.organizations,
  required this.deviceCount,
  required this.motherCount,
  required this.testCount,
  required this.doctorCount,
});