hint property

void Function(num, num) get hint

Implementation

void Function(
  _i2.num,
  _i2.num,
) get hint => (
      _i2.num p0,
      _i2.num p1,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'hint',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
set hint (void value(num, num))

Implementation

set hint(
    void Function(
      _i2.num,
      _i2.num,
    ) value) {
  _i4.setProperty(
    this,
    'hint',
    _i4.allowInterop(value),
  );
}