sort property

Array Function([num (T, T)?]) sort

Implementation

_i3.Array<_i2.dynamic> Function(
    [_i2.num Function(
      T,
      T,
    )?]) get sort => (
        [_i2.num Function(
          T,
          T,
        )? p0]) =>
    _i6.callMethod(
      _i6.getProperty(
        this,
        'sort',
      ),
      r'call',
      [
        this,
        p0 == null ? _i5.undefined : _i6.allowInterop(p0),
      ],
    );
void sort=(Array value([num (T, T)?]))

Implementation

set sort(
    _i3.Array<_i2.dynamic> Function(
            [_i2.num Function(
              T,
              T,
            )?])
        value) {
  _i6.setProperty(
    this,
    'sort',
    _i6.allowInterop(value),
  );
}