IosApp.fromJson constructor

IosApp.fromJson(
  1. Map _json
)

Implementation

IosApp.fromJson(core.Map _json)
    : this(
        appId:
            _json.containsKey('appId') ? _json['appId'] as core.String : null,
        appStoreId: _json.containsKey('appStoreId')
            ? _json['appStoreId'] as core.String
            : null,
        bundleId: _json.containsKey('bundleId')
            ? _json['bundleId'] as core.String
            : null,
        displayName: _json.containsKey('displayName')
            ? _json['displayName'] as core.String
            : null,
        name: _json.containsKey('name') ? _json['name'] as core.String : null,
        projectId: _json.containsKey('projectId')
            ? _json['projectId'] as core.String
            : null,
      );