Created
December 13, 2019 07:45
-
-
Save SidneyMachara/e5171815c37183953707a770d6dc4d6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class GameBtn{ | |
final int id; | |
String text; | |
Color bg; | |
bool enabled; | |
GameBtn({this.id, this.text="", this.bg = Colors.grey, this.enabled=true}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment