drawRSuperellipse method

  1. @override
void drawRSuperellipse(
  1. dynamic rsuperellipse,
  2. Paint paint
)
override

Draws a rounded superellipse with the given Paint. The shape is filled, and the value of the Paint.style is ignored for this call.

Implementation

@override
void drawRSuperellipse(dynamic rsuperellipse, ui.Paint paint) {
  // ignore: avoid_dynamic_calls
  (parent as dynamic).drawRSuperellipse(rsuperellipse, paint);
}