PlayStoreResults class

Constructors

PlayStoreResults()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

releaseNotesSpan RegExp
getter/setter pair

Static Methods

description(Document response) String?
Return field description from Play Store results.
minAppVersion(Document response, {String tagRegExpSource = r'\[\Minimum supported app version\:[\s]*(?<version>[^\s]+)[\s]*\]'}) → Version?
Return the minimum app version taken from a tag in the description field from the store response. The tagRegExpSource is used to represent the format of a tag using a regular expression. The format in the description by default is like this: [Minimum supported app version: 1.2.3], which returns the version 1.2.3. If there is no match, it returns null.
multilineReleaseNotes(Element rawReleaseNotes) String?
redesignedDescription(Document response) String?
Return field description from Redesigned Play Store results.
redesignedReleaseNotes(Document response) String?
Returns field releaseNotes from Redesigned Play Store results. When there are no release notes, the main app description is used.
redesignedVersion(Document response) String?
Return field version from Redesigned Play Store results.
releaseNotes(Document response) String?
Returns field releaseNotes from Play Store results. When there are no release notes, the main app description is used.
version(Document response) String?
Return field version from Play Store results.