fromMap static method

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

Deserializes from the map message.

Implementation

static IOSDeviceInfo fromMap(Map<String, dynamic> map) {
  return IOSDeviceInfo._(
    systemVersion: map['systemVersion'],
  );
}