callback method

  1. @visibleForTesting
Future<Map<String, dynamic>> callback(
  1. Map<String, String> params
)

The callback function to response the driver side input.

Implementation

@visibleForTesting
Future<Map<String, dynamic>> callback(Map<String, String> params) async {
  return callbackManager.callback(
      params, this /* as IntegrationTestResults */);
}