ShapeModel constructor

ShapeModel({
  1. required int index,
  2. required String icon,
  3. required String name,
})

Implementation

ShapeModel({
  required this.index,
  required this.icon,
  required this.name,
});