labels property

Map<String, String> get labels

A getter that returns a map of labels for form fields.

This getter provides a map where the keys represent the names or identifiers of form fields, and the corresponding values are strings representing human-readable labels or descriptions for those fields.

Example usage:

Map<String, String> get labels => {
  'email_address': 'Email',
};

Implementation

Map<String, String> get labels => {};