Skip to content

Instantly share code, notes, and snippets.

@Indy9000
Created May 31, 2021 15:24
Show Gist options
  • Save Indy9000/b7ae51a90a59c959d7dac769928ad92e to your computer and use it in GitHub Desktop.
Save Indy9000/b7ae51a90a59c959d7dac769928ad92e to your computer and use it in GitHub Desktop.
animated-donut-chart-01
class DataItem {
final double value;
final String label;
final Color color;
DataItem(this.value, this.label, this.color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment