fromJson static method

GetnetDeviceInfo fromJson({
  1. required Map json,
})

Implementation

static GetnetDeviceInfo fromJson({required Map json}) {
  return GetnetDeviceInfo(seriallNumber: json['serialNumber'], deviceModel: json['deviceModel']);
}