PublisherProfileMobileApplication.fromJson constructor
PublisherProfileMobileApplication.fromJson(
- 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,
);