DeviceInfoModel constructor

DeviceInfoModel({
  1. required String model,
  2. required String osVersion,
  3. required String screenSize,
})

Implementation

DeviceInfoModel({
  required this.model,
  required this.osVersion,
  required this.screenSize,
});