When i write and run this function by dart
void main (){ List names= [ "eslam", "zoz", "semsem"]; var name = names.any((element) => element > 3); print (name);}
show me
Exception has occurred.NoSuchMethodError (NoSuchMethodError: Class 'String' has no instance method '>'.Receiver: "eslam"Tried calling: >(3))