A mutable List means they can change after the declaration, and an immutable List means they can’t change after the declaration. Example void main() { List<String> names = ["Raj", "Jeel", "Rocky"]; // Mutable List names[1] = "Jeet"; // possible ...
jeetbhalu.hashnode.dev1 min read
No responses yet.