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:component_library/component_library.dart'; | |
import 'package:domain_models/domain_models.dart'; | |
import 'package:flutter/material.dart'; | |
class AppPieChart extends StatefulWidget { | |
const AppPieChart({ | |
super.key, | |
required this.subAccount, | |
}); | |
final SubAccount subAccount; |