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