Apr 26, 2025
var, String, int, double, etc.dynamic keyword.void main() {}.var firstName = "Muhammad"; infers String type.$.// comment/* comment *//// commentint, double, String, bool, dynamic.int.parse(), double.parse(), .toString().const and final.+, -, *, /, %.==, !=, >, <, >=, <=.&&, ||, !.*if, else if, else for conditional logic.switch statements for multiple conditions.for, for in, forEach, while, do while loops.break to exit a loop and continue to skip an iteration.returnType functionName(parameters) {}.class ClassName {}.extends.@override annotation.get and set keywords.try, catch, and finally for error handling.throw keyword to raise exceptions.on ExceptionType syntax.