Data constructor

Data({
  1. num? id,
  2. String? version,
  3. String? type,
  4. num? isFource,
  5. String? appType,
  6. String? createdAt,
})

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;
}