Programming in Dart: Classes

Jun 28 2022 · Dart 2.17, Flutter 3.0, DartPad

Part 1: Understand Classes

08. Create Static Members

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 07. Define Multiple Constructors Next episode: 09. Utilize Enumerations

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

When you define a class, you define methods and properties for that class. Each instance of the class maintains its own state. This is useful, but there are times that you want to keep track of items on a class level.

class User {
  final int id;
  final String name;
  
  User(this.id, this.name); 
  User.anonymous() : id = 0, name = 'anonymous';
}

User.maxAttribute
static const anonymousUserId = 0;
static const anonymousUserName = 'anonymous';
User.anonymous() : id = anonymousUserId, name = anonymousUserName;
void main() {
  print(User.anonymousUserId);
}
private static const anonymousUserId = 0;
static const _anonymousUserId = 0;
static const _anonymousUserName = 'anonymous';
print(User._anonymousUserId);
import 'dart:convert';
static String encode(User user) {

}
print(name);
final encodedString = utf8.encode(user.name);
final base64String = base64.encode(encodedString);
return base64String;
User.encode();
User.encode(user)
print(User.encode(user));