DeviceInfoEntity.fromJson constructor

DeviceInfoEntity.fromJson(
  1. dynamic json
)

Implementation

DeviceInfoEntity.fromJson(dynamic json) {
  identifier = json['identifier'];
  buildVersionCode = json['buildVersionCode'];
  name = json['name'];
  versionString = json['versionString'];
  versionCode = json['versionCode'];
  sysVersion = json['sysVersion'];
  machine = json['machine'];
  idfv = json['idfv'];
  screenWidth = json['screenWidth'];
  screenHeight = json['screenHeight'];
  adsToken = json['adsToken'];
}