submit method
- CompletionCallback? completionCallback,
Implementation
void submit({CompletionCallback? completionCallback}) {
String? error = _submit(completionCallback);
if (error != null) {
throw Exception(error);
}
}
void submit({CompletionCallback? completionCallback}) {
String? error = _submit(completionCallback);
if (error != null) {
throw Exception(error);
}
}