callStartSender method

Future<void> callStartSender(
  1. String appOrigin
)

Calls the start sender function.

This function calls the _startTransfer function with the provided appOrigin.

Parameters:

  • appOrigin: The origin of the app.

Implementation

Future<void> callStartSender(String appOrigin) async {
  _startTransfer(appOrigin);
}