Standings basic structure working

This commit is contained in:
clopezr1
2020-04-09 18:45:35 -04:00
parent 6c1e26993e
commit 5c97ec7de0
5 changed files with 158 additions and 61 deletions

16
lib/models/School.dart Normal file
View 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
);
}