AppVersionList.fromJson constructor
AppVersionList.fromJson(
- Map json_
Implementation
AppVersionList.fromJson(core.Map json_)
: this(
versionCodes: (json_['versionCodes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);