imageExtensionRegex top-level property
Regex pattern to match supported image file extensions.
Implementation
final RegExp imageExtensionRegex = RegExp(
r'\.(png|jpe?g|gif|webp)$',
caseSensitive: false,
);
Regex pattern to match supported image file extensions.
final RegExp imageExtensionRegex = RegExp(
r'\.(png|jpe?g|gif|webp)$',
caseSensitive: false,
);