check string is angel company valid url
bool isAngelCompany([String? company]) { var o = angelCompany; if (o == null) return false; return (company == null || o.company == company); }