findPreferredMethod static method
Implementation
static FutureOr<Contactable?> findPreferredMethod(
ISunnyContact? contact, ContactableType? type) async {
if (contact == null || type == null) return null;
return findPreferredMethodSunny(contact, type);
}