setOverlayTheme method

void setOverlayTheme(
  1. OverlayThemeData themeData
)

Sets the theme of the overlay views

Implementation

void setOverlayTheme(OverlayThemeData themeData) {
  _methodChannel.invokeMethod(
    _setOverlayThemeMethodName,
    {"theme": themeData.toMap()},
  );
}