AppStorePreReleaseVersionAttributes.fromMap constructor Null safety
- Map map
The attributes of a version of an app in the App Store Connect API.
Implementation
factory AppStorePreReleaseVersionAttributes.fromMap(
Map<dynamic, dynamic> map,
) {
map = map.cast<String, dynamic>();
return AppStorePreReleaseVersionAttributes(
platform: ApplePlatform.fromString(map['platform'] as String?),
versionString: map['version'] as String?,
);
}