PlatformBody constructor

PlatformBody({
  1. Key? key,
  2. Color? color,
  3. BorderRadius? borderRadius,
  4. Widget? child,
  5. dynamic extraOptions,
})

Implementation

PlatformBody(
    {Key? key, this.color, this.borderRadius, this.child, extraOptions})
    : super(key: key, extraOptions: extraOptions);