linkDriver method

  1. @override
  2. @mustBeOverridden
void linkDriver(
  1. UIDriver driver
)

Links a UIDriver instance to this holder.

This method should be called to establish the connection between the capability delegate and the driver that uses it.

The driver parameter is the UIDriver instance to link.

Implementation

@override
@mustBeOverridden
void linkDriver(UIDriver driver) =>
    throw const MissingCapabilityMethodImplementation(
      "linkDriver",
      "ScriptingCapabilityDelegate",
    );