Array.fromArray constructor

Array.fromArray(
  1. Array list
)

Implementation

Array.fromArray(Array list) {
  // deep copy of the parameter
  l = list.map((element) => element).toList();
}