imageExtensionRegex top-level property

RegExp imageExtensionRegex
final

Regex pattern to match supported image file extensions.

Implementation

final RegExp imageExtensionRegex = RegExp(
  r'\.(png|jpe?g|gif|webp)$',
  caseSensitive: false,
);