ALAboutDialog constructor

const ALAboutDialog({
  1. Key? key,
  2. required String version,
  3. required String appName,
  4. required String appDescription,
  5. required String developedBy,
  6. required String image,
})

Implementation

const ALAboutDialog({
  Key? key,
  required this.version,
  required this.appName,
  required this.appDescription,
  required this.developedBy, required this.image,
}) : super(key: key);