Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

πŸš— You set the rental price
πŸ” Secure bookings with verified renters
πŸ“ Track your vehicle with GPS integration
πŸ’° Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Naming Conventions in Dart.

Dart has it’s own naming conventions for the Variables, Fields, Methods, Classes, and Packages.

1. Variables and Field name will starts with Lower-Case and every Second word’s first letter will be Upper-Case like firstName, secondName, getAllColors. Using Under-Score in the middle of the Variable or Field Name is discussed in Dart. But you can use the underscore at the beginning of a Variable or File Name and if you do so then it will be a Private Variable or Private Field and it’s Scope will be Local.

2. Class names will starts with Upper-Case letter and every second word’s first letter is also Upper-Case like

class People{
    }

class ProductService{
     } 

class MaterialPageRoute{
   }Code language: JavaScript (javascript)

If you want to make the class Private then use Under-Score in front of Class name. See Below :-

class _People{
    }

class _ProductService{
     } 

class _MaterialPageRoute{
   }Code language: JavaScript (javascript)

3. All the Libraries, Packages, Directories, and Source Files will be named LowerCase with UnderScores like lower_case_underscores.

Note :- Constant Names, Methods, Method Parameters will follow the Variable Naming Convention.

     const pi = 3.14 -> const_pi = 3.14
     getAllProducts(){}  -> _getAllProducts(){}
     getProductByName(String name){}Code language: JavaScript (javascript)

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.