FlutterAwesomeCalculator constructor

FlutterAwesomeCalculator({
  1. Key? key,
  2. required BuildContext context,
  3. double? height,
  4. Color? digitsButtonColor,
  5. Color? operatorsButtonColor,
  6. Color? clearButtonColor,
  7. double? buttonRadius,
  8. Color? backgroundColor,
  9. Color? expressionAnswerColor,
  10. int? fractionDigits,
  11. bool? showAnswerField,
  12. void onChanged(
    1. String answer,
    2. String expression
    )?,
})

Implementation

FlutterAwesomeCalculator(
    {Key? key,
    required this.context,
    this.height,
    this.digitsButtonColor,
    this.operatorsButtonColor,
    this.clearButtonColor,
    this.buttonRadius,
    this.backgroundColor,
    this.expressionAnswerColor,
    this.fractionDigits,
    this.showAnswerField,
    this.onChanged})
    : super(key: key);