equals method

Future<bool> equals(
  1. AppiumWebElement other
)

Implementation

Future<bool> equals(AppiumWebElement other) async =>
    // ignore: unnecessary_type_check
    other is AppiumWebElement && other.driver == driver && other.id == id;