16 lines
225 B
Dart
16 lines
225 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class School {
|
|
final String name;
|
|
final AssetImage logo;
|
|
final int win;
|
|
final int loss;
|
|
|
|
School(
|
|
this.name,
|
|
this.logo,
|
|
this.win,
|
|
this.loss
|
|
);
|
|
|
|
} |