how to create 2 array matrix in dart programming

Recommended Answers

All 2 Replies

  1. Why did you tag your post with c, c++, java, javascript and python?
    All these support arrays.

  2. If I google "How to make an array in Dart?" then I see tutorials so how to make an array can't be your question.
    Please expand on what stopped you here.

Dart has no standard array types, but it does have a built-in list data type that is much like a one-dimensional array in other languages. The usual way to represent a matrix in a language that only has lists and/or 1-D arrays is as a list of lists. There's an example in the accepted answer to this StackOverflow question. .

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.