FirstAprilFish constructor

const FirstAprilFish({
  1. Key? key,
  2. required String label,
  3. bool showCameraSelection = false,
})

Implementation

const FirstAprilFish({
  Key? key,
  required this.label,
  this.showCameraSelection = false,
}) : super(key: key);