ModelExport constructor

ModelExport({
  1. required String contentType,
  2. DateTime? createdAt,
  3. String? id,
  4. String? type,
  5. DateTime? updatedAt,
})

Returns a new ModelExport instance.

Implementation

ModelExport({
  required this.contentType,
  this.createdAt,
  this.id,
  this.type,
  this.updatedAt,
});