fromMap static method

IosDevice fromMap(
  1. Map<String, dynamic> map
)

Implementation

static IosDevice fromMap(Map<String, dynamic> map) {
  return IosDevice(
    systemVersion: map[systemVersionKey],
    model: map[BaseDeviceInfo.modelKey],
  );
}