isEmpty property
bool
get
isEmpty
Implementation
bool get isEmpty => switch (_value) {
null => true,
final String str => str.isEmpty,
final List<dynamic> list => list.isEmpty,
_ => false
};