listMap<K, V> method

  1. @Deprecated('没什么用')
List<Map<K, V>> listMap<K, V>({
  1. bool growable = false,
})

Implementation

@Deprecated('没什么用')
List<Map<K, V>> listMap<K, V>({bool growable = false}) {
  return (this as List)
      .cast<Map>()
      .map((e) => e.cast<K, V>())
      .toList(growable: growable);
}