simplify method
Implementation
String simplify({
bool trim = true,
bool collapseSpaces = true,
bool lowerCase = true,
String nullValue = '',
}) =>
this?.textContent.simplify(
trim: trim,
collapseSpaces: collapseSpaces,
lowerCase: lowerCase,
nullValue: nullValue,
) ??
'';