Schedule constructor

Schedule({
  1. String scheduleName,
  2. int assetModelId,
  3. List<Row> rows = const [],
  4. List<ColumnDefinition> definitions = const [],
  5. bool imported,
})

Returns a new Schedule instance.

Implementation

Schedule({
  this.scheduleName,
  this.assetModelId,
  this.rows = const [],
  this.definitions = const [],
  this.imported,
});