BaseUrl constructor

BaseUrl({
  1. required String name,
  2. required String path,
  3. List<BaseUrl> items = const [],
})

Creates a BaseUrl with the given name and path.

Implementation

BaseUrl({required this.name, required this.path, this.items = const []});