isAngelCompany method

bool isAngelCompany([
  1. String? company
])

check string is angel company valid url

Implementation

bool isAngelCompany([String? company]) {
  var o = angelCompany;
  if (o == null) return false;
  return (company == null || o.company == company);
}