pow property

num Function(num, num) get pow

Implementation

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

Implementation

set pow(
    _i2.num Function(
      _i2.num,
      _i2.num,
    ) value) {
  _i6.setProperty(
    this,
    'pow',
    _i6.allowInterop(value),
  );
}