NiceDashboardPanel constructor

NiceDashboardPanel({
  1. required String id,
  2. required String title,
  3. required WidgetBuilder builder,
  4. int row = 0,
  5. int col = 0,
  6. int rowSpan = 1,
  7. int colSpan = 1,
  8. IconData? icon,
  9. bool removable = true,
})

Implementation

NiceDashboardPanel({
  required this.id,
  required this.title,
  required this.builder,
  this.row = 0,
  this.col = 0,
  this.rowSpan = 1,
  this.colSpan = 1,
  this.icon,
  this.removable = true,
});