AppleDeviceModel constructor

const AppleDeviceModel({
  1. required String id,
  2. required String name,
})

Implementation

const AppleDeviceModel({
  required this.id,
  required this.name,
});