Data constructor
Data({})
Implementation
Data({
num? id,
String? version,
String? type,
num? isFource,
String? appType,
String? createdAt,}){
_id = id;
_version = version;
_type = type;
_isFource = isFource;
_appType = appType;
_createdAt = createdAt;
}