| LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : /// URI helper extensions used by the package. 2 : /// 3 : /// Adds convenient accessors for extracting file-related information from 4 : /// `Uri` instances. 5 : extension UriExtensions on Uri { 6 : /// Returns the base name of the URI path (e.g., 'video.mp4'). 7 : /// 8 : /// Splits the path by '/' and returns the last segment. 9 0 : String get fileName => path.split('/').last; 10 : } |
| Generated by: LCOV version 2.3.2-1 |