IDecFloat16 constructor

IDecFloat16(
  1. FbInterface self
)

Implementation

IDecFloat16(super.self) {
  startIndex = super.startIndex + super.methodCount;
  methodCount = 4;
  var idx = startIndex;
  _toBcd = Pointer<
          NativeFunction<
              Void Function(FbInterface, Pointer<FbDec16>, Pointer<Int>,
                  Pointer<Uint8>, Pointer<Int>)>>.fromAddress(vtable[idx++])
      .asFunction();
  _toString = Pointer<
          NativeFunction<
              Void Function(FbInterface, FbInterface, Pointer<FbDec16>,
                  UnsignedInt, Pointer<Utf8>)>>.fromAddress(vtable[idx++])
      .asFunction();
  _fromBcd = Pointer<
          NativeFunction<
              Void Function(FbInterface, Int, Pointer<Uint8>, Int,
                  Pointer<FbDec16>)>>.fromAddress(vtable[idx++])
      .asFunction();
  _fromString = Pointer<
          NativeFunction<
              Void Function(FbInterface, FbInterface, Pointer<Utf8>,
                  Pointer<FbDec16>)>>.fromAddress(vtable[idx++])
      .asFunction();
}