unjsifyMapListProp<K, V> function
Runs unjsifyMapProp on every JS Map in the value
.
Implementation
List<Map<K, V>?>? unjsifyMapListProp<K, V>(List<dynamic>? value) {
return value?.map((e) => unjsifyMapProp<K, V>(e as JsMap?)).toList();
}