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