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