SdkVersion constructor
Constructor for the SdkVersion class.
The API user does not normally need to construct instances directly.
Parameters
minor: Minor SDK version number, such as 2 in version 1.2major: Major SDK version number, such as 1 in version 1year: SDK year, decimal 1 or 2 digitsweek: The week of the year, decimal 1 or 2 digitsrevision: SDK revision string
Implementation
@Deprecated('Use setApplicationVersion instead.')
SdkVersion({
this.minor = 0,
this.major = 0,
this.year = 0,
this.week = 0,
this.revision = '',
});