aman-kassa-flutter/lib/model/Player.dart

6 lines
60 B
Dart

class Player {
final String name;
Player(this.name);
}