Data constructor

Data({
  1. String? appVersionId,
  2. String? type,
  3. String? version,
  4. String? isForce,
  5. CreatedAtDateTime? createdAtDateTime,
})

Implementation

Data({
    String? appVersionId,
    String? type,
    String? version,
    String? isForce,
    CreatedAtDateTime? createdAtDateTime,}){
  _appVersionId = appVersionId;
  _type = type;
  _version = version;
  _isForce = isForce;
  _createdAtDateTime = createdAtDateTime;
}