Daily constructor
Daily({})
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;
}