append_uri_component

Last updated:

0 purchases

append_uri_component Image
append_uri_component Images
Add to Cart

Description:

append uri component

Append a component to a Dart Uri.
Usage #
import 'package:append_uri_component/append_uri_component.dart';

void main() {
var dirUri = Uri.directory('/a/b');
print(dirUri.appendUriComponent('hello 🌏', isDirectory: true));
// 'file:///a/b/hello%20%F0%9F%8C%8F/'

print(dirUri.appendUriComponents(['a', 'b', 'c'], isDirectory: false));
// 'file:///a/b/a/b/c'
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.