AccountProfileSettings constructor
AccountProfileSettings({
- BoolValue? noSmoking,
- BoolValue? noPets,
Implementation
factory AccountProfileSettings({
$1.BoolValue? noSmoking,
$1.BoolValue? noPets,
}) {
final result = create();
if (noSmoking != null) result.noSmoking = noSmoking;
if (noPets != null) result.noPets = noPets;
return result;
}