reverse function

  1. @Deprecated("Use inbuilt List.reversed.toList() instead. Further this methods does not mutate the passed list like the original javascript method")
List reverse(
  1. List list
)

Implementation

@Deprecated(
    "Use inbuilt List.reversed.toList() instead. Further this methods does not mutate the passed list like the original javascript method")
List reverse(List list) => list.reversed.toList();