Daily constructor

Daily({
  1. int? version,
  2. int? id,
  3. int? factId,
  4. bool? toLearn,
  5. int? repeated,
  6. int? fails,
  7. int? day,
  8. bool? actualLeft,
})

Implementation

factory Daily({
  $core.int? version,
  $core.int? id,
  $core.int? factId,
  $core.bool? toLearn,
  $core.int? repeated,
  $core.int? fails,
  $core.int? day,
  $core.bool? actualLeft,
}) {
  final _result = create();
  if (version != null) {
    _result.version = version;
  }
  if (id != null) {
    _result.id = id;
  }
  if (factId != null) {
    _result.factId = factId;
  }
  if (toLearn != null) {
    _result.toLearn = toLearn;
  }
  if (repeated != null) {
    _result.repeated = repeated;
  }
  if (fails != null) {
    _result.fails = fails;
  }
  if (day != null) {
    _result.day = day;
  }
  if (actualLeft != null) {
    _result.actualLeft = actualLeft;
  }
  return _result;
}