Standings basic structure working
This commit is contained in:
16
lib/models/School.dart
Normal file
16
lib/models/School.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
||||
class School {
|
||||
final String name;
|
||||
final Icon logo;
|
||||
final int win;
|
||||
final int loss;
|
||||
|
||||
School(
|
||||
this.name,
|
||||
this.logo,
|
||||
this.win,
|
||||
this.loss
|
||||
);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user