create method

Rectangle<double> create()

Implementation

math.Rectangle<double> create() => math.Rectangle<double>(
  ref.x.toDouble(),
  ref.y.toDouble(),
  ref.w.toDouble(),
  ref.h.toDouble(),
);