unwrapList<T> method

  1. @override
List<T> unwrapList<T>(
  1. List array
)
override

Implementation

@override
List<T> unwrapList<T>(List array) {
  List<T> result = [];
  for (final item in array) {
    result.add(unwrap(item));
  }
  return result;
}