1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/utils/api_utils.dart

7 lines
117 B
Dart
Raw Normal View History

2020-04-15 10:04:19 +00:00
/// API utilities
///
/// @author Pierre Hubert
/// Casting helper
T cast<T>(dynamic val) => val is T ? val : null;