BalancesChart constructor

const BalancesChart({
  1. Key? key,
  2. required String userId,
  3. required String currency,
  4. required String amountType,
  5. bool? showRaw,
  6. List<String>? transactionTypes,
  7. Map<String, dynamic>? chartOptions,
  8. dynamic themeConfig,
})

Implementation

const BalancesChart({
  Key? key,
  required this.userId,
  required this.currency,
  required this.amountType,
  this.showRaw,
  this.transactionTypes,
  this.chartOptions,
  this.themeConfig,
}) : super(key: key);