Config constructor
Config({})
Implementation
factory Config({
$core.int? version,
$core.int? userId,
$core.String? email,
$core.int? learnPerDay,
$core.int? factCounter,
$core.int? bookCounter,
}) {
final _result = create();
if (version != null) {
_result.version = version;
}
if (userId != null) {
_result.userId = userId;
}
if (email != null) {
_result.email = email;
}
if (learnPerDay != null) {
_result.learnPerDay = learnPerDay;
}
if (factCounter != null) {
_result.factCounter = factCounter;
}
if (bookCounter != null) {
_result.bookCounter = bookCounter;
}
return _result;
}