GetDeviceType function

void GetDeviceType()

Implementation

void GetDeviceType(){
  ImpactBrand="";
  ImpactModel="";
  _deviceData.forEach((k, v) async {
    if(k=="brand"){
      ImpactBrand=v;
    }
    if(k=="model"){
      ImpactModel=v;
    }
  });
}