createIndex property

IDBIndex Function(String, Object, [IDBIndexParameters?]) get createIndex

Implementation

_i3.IDBIndex Function(
  _i2.String,
  _i2.Object, [
  _i3.IDBIndexParameters?,
]) get createIndex => (
      _i2.String p0,
      _i2.Object p1, [
      _i3.IDBIndexParameters? p2,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'createIndex',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2 ?? _i6.undefined,
          ],
        );
set createIndex (IDBIndex value(String, Object, [IDBIndexParameters?]))

Implementation

set createIndex(
    _i3.IDBIndex Function(
      _i2.String,
      _i2.Object, [
      _i3.IDBIndexParameters?,
    ]) value) {
  _i4.setProperty(
    this,
    'createIndex',
    _i4.allowInterop(value),
  );
}