AssetModel constructor

AssetModel({
  1. required int modelId,
  2. String? modelName,
  3. String? description,
  4. String? dateAdded,
})

Implementation

AssetModel({
  required this.modelId,
  this.modelName,
  this.description,
  this.dateAdded,
});