exportToExcel method

  1. @protected
Future<void> exportToExcel(
  1. BuildContext context
)

Export the calculator state to an Excel file. Throws an exception if the exportToExcel function is not implemented.

Implementation

@protected
Future<void> exportToExcel(BuildContext context) async {
  throw '`exportToExcel` function is not implemented';
}