22 lines
784 B
Dart
22 lines
784 B
Dart
/*
|
|
* This file is part of the Protevus Platform.
|
|
*
|
|
* (C) Protevus <developers@protevus.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/// Utility library for the Protevus OpenAPI package.
|
|
///
|
|
/// This library exports helper functions for working with lists and maps
|
|
/// from the Protevus OpenAPI package. It provides convenient access to
|
|
/// utility functions that can be used across the application.
|
|
///
|
|
/// Exports:
|
|
/// - list_helper.dart: Contains functions for list manipulation.
|
|
/// - map_helper.dart: Contains functions for map manipulation.
|
|
library util;
|
|
|
|
export 'package:protevus_openapi/src/util/list_helper.dart';
|
|
export 'package:protevus_openapi/src/util/map_helper.dart';
|