aman-satu-flutter/lib/core/utils/utils_parse.dart

6 lines
158 B
Dart

List<String>? parseListString(Iterable<dynamic>? json){
if(json==null) return null;
return List<String>.from(json);
}
T? cast<T>(x) => x is T ? x : null;