UpDownChartFlag constructor

const UpDownChartFlag({
  1. Key? key,
  2. required String title,
  3. required String money,
  4. bool rigntIcon = false,
  5. GestureTapCallback? onTap,
  6. String fontFamily = "dinFont",
  7. double width = 155,
  8. double height = 75,
  9. EdgeInsets padding = const EdgeInsets.all(12),
})

Implementation

const UpDownChartFlag({Key? key,
required this.title,
required this.money,
this.rigntIcon = false,
this.onTap,
this.fontFamily = "dinFont",
this.width = 155,
this.height = 75,
this.padding = const EdgeInsets.all(12)
}) : super(key: key);