SettingObject constructor
Implementation
factory SettingObject({
$core.String? id,
Setting? key,
$core.String? value,
$core.String? updated,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (key != null) {
$result.key = key;
}
if (value != null) {
$result.value = value;
}
if (updated != null) {
$result.updated = updated;
}
return $result;
}