parseDeviceProfilePageData function

PageData<DeviceProfile> parseDeviceProfilePageData(
  1. Map<String, dynamic> json
)

Implementation

PageData<DeviceProfile> parseDeviceProfilePageData(Map<String, dynamic> json) {
  return PageData.fromJson(json, (json) => DeviceProfile.fromJson(json));
}