BrowseHead constructor

BrowseHead({
  1. String? name,
  2. String? code,
  3. required Map<String, BrowseRow> rows,
  4. int pg = 1,
  5. int nbrows = 20,
  6. int curStatus = 0,
  7. bool isLoaded = false,
})

Implementation

BrowseHead({
  this.name,
  this.code,
  required this.rows,
  this.pg = 1,
  this.nbrows = 20,
  this.curStatus = 0,
  this.isLoaded = false,
});