fromMap static method

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

Implementation

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