description property

String description

Implementation

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

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

pass null to remove key from attributes

Implementation

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