collection
collection copied to clipboard
Add firstNotNull extension
Hello! Please add this useful method into the library:
T get firstNotNull {
return firstWhere((element) => element != null);
}