setBackgroundColor method

int setBackgroundColor(
  1. int color
)

Implementation

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