toListOrNullAsync method

Future<List<T>?> toListOrNullAsync({
  1. bool growable = true,
})

Implementation

Future<List<T>?> toListOrNullAsync({bool growable = true}) =>
    then((itr) => itr?.toList());