getElementById property

Element? Function(String) getElementById

Implementation

_i3.Element? Function(_i2.String) get getElementById =>
    (_i2.String p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'getElementById',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
void getElementById=(Element? value(String))

Implementation

set getElementById(_i3.Element? Function(_i2.String) value) {
  _i4.setProperty(
    this,
    'getElementById',
    _i4.allowInterop((p0) => () => value(p0) ?? _i6.undefined),
  );
}