isJAVA property
bool
get
isJAVA
Checks if a file path or URL represents a JAVA source file.
Implementation
bool get isJAVA {
final mt = mimeType();
return mt == 'text/x-java-source';
}
Checks if a file path or URL represents a JAVA source file.
bool get isJAVA {
final mt = mimeType();
return mt == 'text/x-java-source';
}