exportToCsv method

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

Exports the calculator state to CSV. Throws an exception if the exportToCsv function is not implemented.

Implementation

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