getFirstOrNull property
File?
get
getFirstOrNull
Implementation
File? get getFirstOrNull {
if (this != null && this!.isNotEmpty) {
return this!.first;
}
return null;
}
File? get getFirstOrNull {
if (this != null && this!.isNotEmpty) {
return this!.first;
}
return null;
}