SetBackgroundColor method

int SetBackgroundColor(
  1. int color
)

Implementation

int SetBackgroundColor(int color) => ptr.ref.vtable
    .elementAt(8)
    .cast<Pointer<NativeFunction<Int32 Function(Pointer, Uint32 color)>>>()
    .value
    .asFunction<int Function(Pointer, int color)>()(ptr.ref.lpVtbl, color);