1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-07-05 17:42:52 +00:00
Files
comunicmobile/lib/utils/api_utils.dart

7 lines
117 B
Dart

/// API utilities
///
/// @author Pierre Hubert
/// Casting helper
T cast<T>(dynamic val) => val is T ? val : null;