IPhone constructor

const IPhone({
  1. Key? key,
  2. required String iphoneColor,
  3. required String wallpaper,
  4. required List<Map<String, dynamic>> applications,
  5. required List<Map<String, dynamic>> bottomApplications,
})

Implementation

const IPhone(
    {super.key,
    required this.iphoneColor,
    required this.wallpaper,
    required this.applications,
    required this.bottomApplications});