load build data to graph redesign top info tiles place add button on header folder restructure
		
			
				
	
	
		
			16 lines
		
	
	
		
			288 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			288 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/material.dart';
 | |
| 
 | |
| class QuickInfoData {
 | |
|   const QuickInfoData({
 | |
|     Key? key,
 | |
|     required this.color,
 | |
|     required this.icon,
 | |
|     required this.title,
 | |
|     required this.subtitle,
 | |
|   });
 | |
| 
 | |
|   final Color color;
 | |
|   final IconData icon;
 | |
|   final String title, subtitle;
 | |
| }
 |