AppListView constructor

const AppListView({
  1. required bool isReadyToggle,
  2. required int length,
  3. required ItemBuilder title,
  4. required double width,
  5. ItemBuilder? trailing,
  6. double height = 68,
  7. double mt = 180,
  8. Key? key,
})

Implementation

const AppListView({
  required this.isReadyToggle,
  required this.length,
  required this.title,
  required this.width,
  this.trailing,
  this.height = 68,
  this.mt = 180,
  super.key,
});