RRoshaninmroshan.hashnode.dev·Aug 13 · 3 min readUnderstanding Dart : Part 13 - MapsSeries: Understanding Dart for Flutter Beginners In the previous parts, we learned about Lists and Sets. A List stores values in order, while a Set stores unique values. But sometimes we need to stor00
RRoshaninmroshan.hashnode.dev·Aug 12 · 7 min readUnderstanding Dart : Part 12 - SetsSeries: Understanding Dart for Flutter Beginners In the previous part, we learned about Lists. Lists are useful when you want to store multiple values in a specific order. But sometimes you don't wan00
RRoshaninmroshan.hashnode.dev·Aug 10 · 8 min readUnderstanding Dart : Part 11 - ListsSeries: Understanding Dart for Flutter Beginners So far, we've mostly worked with individual values. String name = "Roshan"; int age = 28; But what if you need to store multiple values in one variab00
RRoshaninmroshan.hashnode.dev·Aug 10 · 6 min readUnderstanding Dart : Part 10 - FunctionsSeries: Understanding Dart for Flutter Beginners As your program grows, putting all of your code inside main() quickly becomes difficult to manage. For example, imagine you need to calculate a total 00
RRoshaninmroshan.hashnode.dev·Aug 5 · 5 min readUnderstanding Dart : Part 9 - LoopsSeries: Understanding Dart for Flutter Beginners Imagine you need to print numbers from 1 to 10. One way is to write: print(1); print(2); print(3); print(4); print(5); print(6); print(7); print(8); p00