noteCategoryId property

String noteCategoryId

Implementation

String get noteCategoryId => _getAttribute<String>(kNoteCategoryId, '');
void noteCategoryId=(String? x)

pass null to remove key from attributes

Implementation

set noteCategoryId(String? x) => (x == null)
    ? _attributes.remove(kNoteCategoryId)
    : _attributes[kNoteCategoryId] = x;