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