extensionWithDot property

String? get extensionWithDot

Gets the file extension with dot

Returns the file extension including the dot, or null if not found. Uses QFileInfoUtils.getExtension(path, includeDot: true).

Implementation

String? get extensionWithDot =>
    QFileInfoUtils.getExtension(path, includeDot: true);