PublisherProfileMobileApplication.fromJson constructor

PublisherProfileMobileApplication.fromJson(
  1. Map _json
)

Implementation

PublisherProfileMobileApplication.fromJson(core.Map _json)
    : this(
        appStore: _json.containsKey('appStore')
            ? _json['appStore'] as core.String
            : null,
        externalAppId: _json.containsKey('externalAppId')
            ? _json['externalAppId'] as core.String
            : null,
        name: _json.containsKey('name') ? _json['name'] as core.String : null,
      );