PerIosVersionInfo.fromJson constructor

PerIosVersionInfo.fromJson(
  1. Map json_
)

Implementation

PerIosVersionInfo.fromJson(core.Map json_)
    : this(
        deviceCapacity: json_.containsKey('deviceCapacity')
            ? json_['deviceCapacity'] as core.String
            : null,
        versionId: json_.containsKey('versionId')
            ? json_['versionId'] as core.String
            : null,
      );