MockDataModel constructor

MockDataModel({
  1. int? id,
  2. String? code,
  3. String? name,
  4. String? path,
})

Implementation

MockDataModel({
  this.id,
  this.code,
  this.name,
  this.path,
});