calloc method

Pointer<SdlFPoint> calloc()

Implementation

Pointer<SdlFPoint> calloc() {
  var result = ffi.calloc<SdlFPoint>()
    ..ref.x = x
    ..ref.y = y;
  return result;
}