SdkInfo constructor

const SdkInfo({
  1. String? sdkName,
  2. int? versionMajor,
  3. int? versionMinor,
  4. int? versionPatchlevel,
})

Implementation

const SdkInfo({
  this.sdkName,
  this.versionMajor,
  this.versionMinor,
  this.versionPatchlevel,
});