GridItem<T> constructor

GridItem<T>({
  1. required String image,
  2. required String id,
  3. required String title,
  4. required T data,
  5. bool disabled = false,
})

Implementation

GridItem({
  required this.image,
  required this.id,
  required this.title,
  required this.data,
  this.disabled = false,
});