checkbox method

Future<T> checkbox(
  1. bool check, [
  2. String? selectors
])

Implementation

Future<T> checkbox(bool check, [String? selectors]) => thenChain((o) {
      _checkbox(this, o.element, check, selectors: selectors);
      return o;
    });