getMinimumSize method

Point<double> getMinimumSize()

Implementation

math.Point<double> getMinimumSize() {
  var w = calloc<Int32>();
  var h = calloc<Int32>();
  sdlGetWindowMinimumSize(this, w, h);
  // 1159
  var result = math.Point<double>(w.value.toDouble(), h.value.toDouble());
  calloc.free(w);
  calloc.free(h);
  return result;
}