Skip to content

Instantly share code, notes, and snippets.

@SidneyMachara
Created December 13, 2019 07:45
Show Gist options
  • Save SidneyMachara/e5171815c37183953707a770d6dc4d6e to your computer and use it in GitHub Desktop.
Save SidneyMachara/e5171815c37183953707a770d6dc4d6e to your computer and use it in GitHub Desktop.
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