Search
 
SCRIPT & CODE EXAMPLE
 

DART

dart function

when you want to make a function that 
doesn't use the format return or a function that doesn't return a value
the function base will look like this:

void functionName() {

}

if its returning some thing it will look like this:

functionName() {
	
}
Comment

Function in dart

//Function in Dart

import 'dart:html';

main(List<String> args) {
  func1();
  func2();
  func3(45, 6);
  print("Division 1:${func4()}");
  print("Division 2:${func5(22, 7)}");
  print(PrintMsg());
}

//Type- 1 no argument no return

void func1() {
  print("I am just learning Flutter FrameWork");
}

void func2() {
  var num1 = 12;
  var num2 = 45;
  var num3 = 0;
  num3 = num1 + num2;

  print("Sum $num3");
}

//Type-2  with argumnet with no return
void func3(var num1, var num2) {
  var num3 = 0;
  num3 = num1 * num2;
  print("Multiply:$num3");
}

//Type-3  no argument with return type

double func4() {
  var num1 = 22.0;
  var num2 = 7.0;
  var num3;

  num3 = num1 / num2;
  return num3;
}

//Type-4  with argument with return

double func5(var num1, var num2) {
  var num3;
  num3 = num1 / num2;
  return num3;
}

//Anamous Function
PrintMsg() => "I am just learning Flutter FrameWork";
Comment

dart function syntax

sum(x, y) {
	return x + y;
}

// This is where the app starts executing.
void main() {
  print(sum(3,5)); // => 8
}
Comment

PREVIOUS NEXT
Code Example
Dart :: flutter display alert dialog after server error 
Dart :: flutter colour hex 
Dart :: customscrollview add container widget 
Swift :: swift 5 delay dismiss view controller 
Swift :: swift ui open link in browser 
Swift :: swift ui debug print 
Swift :: navigationview hide header swiftui 
Swift :: swift continue 
Swift :: swift first where 
Swift :: cannot assign IBaction to uiimageview 
Swift :: custom screen presentation controller coner radius swift 
Swift :: swift compare string to button title 
Swift :: get request swift 
Swift :: get current unix timestamp swift ios 
Swift :: swiftui button style 
Swift :: swift filter dictionary 
Swift :: swift test if simulator 
Swift :: swift read file 
Swift :: unit testing swift ui 
Swift :: swift center label 
Swift :: change font of substring swift 
Swift :: swift contains 
Swift :: set in swift 
Swift :: swift pdf preview image 
Swift :: swift 5 to upper 
Swift :: Play Video in AVPlayer ViewController Sample Code Swift 
Swift :: Swift if..else if 
Swift :: swift ui view 
Swift :: tap to delete xcode 
Swift :: how to debug before app launch swift 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =