mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-16 11:21:56 +08:00
6 lines
255 B
Dart
6 lines
255 B
Dart
/// Returns full URI path for the given [fileName].
|
|
///
|
|
/// The path can be used to store the associated image in the image cache
|
|
/// which needs a valid URI path including a hostname.
|
|
String buildUriPath(String fileName) => 'http://localhost/$fileName';
|