What is difference between TextUtils.isEmpty(string) and string.isEmpty?
TextUtils.isEmpty(string)
string.isEmpty
Both do the same operation.
Is it advantageous to use
String?.isNullOrEmpty
might be what you are looking for