Skip to content

Instantly share code, notes, and snippets.

@MichelNakamura
MichelNakamura / main.dart
Last active August 22, 2023 23:04 — forked from professordezani/main.dart
button_widget
enum Color {Red, Green, Blue}
abstract class Widget { }
class Icon extends Widget {
String? image;
Color? color;
double? width;
double? height;