Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,121 questions

55,995 answers

573 users

How to initialize variables in constructor body with Dart

1 Answer

0 votes
class Test {
  double x;
  double y;

  Test(double x, double y) : x = x + 1000, y = y + 1000 {
    print('this.x: ${this.x}');
    print('x: $x');
    print('this.y: ${this.y}');
    print('y: $y');
  }
}


void main() {
    Test(23, 98);
}




/*
run:

this.x: 1023.0
x: 23.0
this.y: 1098.0
y: 98.0

*/

 



answered Oct 7, 2022 by avibootz

Related questions

2 answers 229 views
229 views asked Oct 22, 2022 by avibootz
3 answers 299 views
1 answer 269 views
3 answers 271 views
271 views asked Oct 11, 2022 by avibootz
1 answer 158 views
1 answer 218 views
1 answer 251 views
...