ScatterFundData constructor

ScatterFundData({
  1. required Color color,
  2. required String fundId,
  3. required String fundName,
  4. required double fundWeight,
  5. required double fundRadius,
  6. required double annualReturn,
  7. required double annualVolatility,
})

Implementation

ScatterFundData({
  required this.color,
  required this.fundId,
  required this.fundName,
  required this.fundWeight,
  required this.fundRadius,
  required this.annualReturn,
  required this.annualVolatility,
});