pluck<T> method

List<T?> pluck<T>(
  1. String key
)

Implementation

List<T?> pluck<T>(String key) {
  return map((e) => e[key] as T?).toList();
}