isEmpty property

bool get isEmpty

Whether every attribute is empty or null.

Implementation

bool get isEmpty {
  final isIdEmpty = id == null || (id != null && id!.isEmpty);
  final isValueEmpty = value == null || (value != null && value!.isEmpty);
  return isIdEmpty && isValueEmpty && refinements.isEmpty;
}