ContainerApp constructor

const ContainerApp({
  1. Key? key,
  2. required String image,
  3. bool forceColor = true,
  4. int imageType = 0,
  5. Color color = Colors.green,
  6. required String title,
  7. required String subtitle,
  8. required dynamic onClick(),
})

Implementation

const ContainerApp({
  Key? key,
  required this.image,
   this.forceColor = true,
  this.imageType = 0,
  this.color = Colors.green,
  required this.title,
  required this.subtitle,
  required this.onClick,
}) : super(key: key);