IConfig constructor

IConfig(
  1. FbInterface self
)

Implementation

IConfig(super.self) {
  startIndex = super.startIndex + super.methodCount;
  methodCount = 3;
  var idx = startIndex;
  _find = Pointer<
          NativeFunction<
              FbInterface Function(FbInterface, FbInterface,
                  Pointer<Utf8>)>>.fromAddress(vtable[idx++])
      .asFunction();
  _findValue = Pointer<
          NativeFunction<
              FbInterface Function(FbInterface, FbInterface, Pointer<Utf8>,
                  Pointer<Utf8>)>>.fromAddress(vtable[idx++])
      .asFunction();
  _findPos = Pointer<
          NativeFunction<
              FbInterface Function(FbInterface, FbInterface, Pointer<Utf8>,
                  UnsignedInt)>>.fromAddress(vtable[idx++])
      .asFunction();
}