onboardings property

List onboardings

Implementation

List get onboardings => _getAttribute<List>(kOnboardings, []);
void onboardings=(List? x)

pass null to remove key from attributes

Implementation

set onboardings(List? x) => (x == null)
    ? _attributes.remove(kOnboardings)
    : _attributes[kOnboardings] = x;