static bool isContains(String? a, String? b) { return _parse((a ?? '').trim().toUpperCase()) .contains(_parse((b ?? '').trim().toUpperCase())); }