CreatedBy constructor

const CreatedBy({
  1. String? displayValue,
  2. required String id,
  3. String name = '',
  4. required CreatedByType type,
})

Creates a new CreatedBy

Implementation

const CreatedBy({
  this.displayValue,
  required this.id,
  this.name = '',
  required this.type,
});