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