submit method

void submit({
  1. CompletionCallback? completionCallback,
})

Implementation

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