proofread method

Future<String> proofread(
  1. String text
)

Proofreads text and returns the corrected text.

Implementation

Future<String> proofread(String text) {
  return EdgeGenAIPlatform.instance.proofread(text);
}