Notes
In Apex, the isEmpty()
method is used to return true if the specified String is empty ('') or null; otherwise, returns false.
Here's an example:
String text ='Apex';
System.debug(String.isEmpty(text));
Output: false
Video
Video does not exists.