simplifyAll method
Implementation
String simplifyAll(
{bool trim = true,
bool collapseSapces = true,
bool lowerCase = true,
String nullValue = '',
String separator = ' , '}) =>
this
?.map((e) => e.simplify(
trim: trim,
collapseSapces: collapseSapces,
lowerCase: lowerCase,
nullValue: nullValue))
.join(separator) ??
'';