Model<T> constructor

Model<T>({
  1. required T id,
  2. DateTime? created,
  3. String? creator,
  4. DateTime? updated,
  5. String? updater,
})

Implementation

Model({
  required this.id,
  this.created,
  this.creator,
  this.updated,
  this.updater,
});