Shape constructor

Shape({
  1. required String name,
  2. required String urlImage,
  3. required int index,
})

Implementation

Shape({
  required this.name,
  required this.urlImage,
  required this.index,
});