Checks if a string is empty.
print(isEmpty('')); // Outputs: true
bool isEmpty(String s) => s.isEmpty;