AppVersionList.fromJson constructor

AppVersionList.fromJson(
  1. Map json_
)

Implementation

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