description property

String description

Implementation

String get description => _getAttribute<String>(kDescription, '');
void description=(String? x)

A brief description of what a batch group is for. This is displayed in Giving to help differentiate different batch groups from one another. If no description is provided for a batch group, it will be referred to as Untitled group within Giving.

pass null to remove key from attributes

Implementation

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