SoftwareInfoDTO constructor

SoftwareInfoDTO({
  1. SelfLinkDTO? links,
  2. String? buildChangeSet,
  3. DateDTO? buildDate,
  4. bool? isLicensedForUse,
  5. String? platformVersion,
  6. String? version,
})

Implementation

SoftwareInfoDTO(
    {this.links,
    this.buildChangeSet,
    this.buildDate,
    bool? isLicensedForUse,
    this.platformVersion,
    this.version})
    : isLicensedForUse = isLicensedForUse ?? false;