1.Question => Find n is +ve,-ve or 0? code:- import 'dart:io'; void main() { print('Om Namah...
code:- import 'package:flutter/material.dart'; void main() { runApp(om()); } class om extends...
import 'package:flutter/material.dart'; void main() { runApp(const om()); } class om extends...
code:- import 'package:flutter/material.dart'; void main() { runApp(om()); } class om...
void main() { print('Om Namah Shivay'); Roti roti = Roti(heatReguired: 50.0, name: 'wheat',...
void main() { print('Om Namah Shivay'); print(info(age: 16)); } //function String info({String?...
void main() { print('Om Namah Shivay'); //Map Map<int, String> planetOrder = { 1:...
void main() { print('Om Namah Shivay'); //list List<int> ages = [1, 2, 3, 4, 5, 6, 7, 5,...
void main() { print('Om Namah Shivay'); //loops //1.for loop for (var i = 1; i <= 10; i++) { ...
void main() { print('Om Namah Shivay'); //ternary int age = 16; print(age == 16 ? 'age = 16' :...
void main() { print('Om Namah Shivay'); // nested if -else int age = 16; if (age == 15) { ...
void main() { print('Om Namah Shivay'); //switch int age = 16; switch (age) { case 15: ...
dart void main() { print("Om Namah Shivay"); //Data Types and Variables ...
void main() { print('Hello World!'); // this is a single line comment //now i learned about the ...
it's my first code in dart programming language. void main() { print('Hello...