CustomIcon constructor

const CustomIcon({
  1. Key? key,
  2. required String path,
  3. required String url,
  4. required String label,
  5. required double width,
  6. required double height,
})

Implementation

const CustomIcon({
  Key? key,
  required this.path,
  required this.url,
  required this.label,
  required this.width,
  required this.height,
}) : super(key: key);