OperationData constructor

OperationData({
  1. String? description,
  2. String? identificationNumber,
  3. required String report,
  4. String? member,
  5. String? name,
  6. String? organization,
  7. String? scheduledAt,
})

Returns a new OperationData instance.

Implementation

OperationData({
  this.description,
  this.identificationNumber,
  required this.report,
  this.member,
  this.name,
  this.organization,
  this.scheduledAt,
});