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