setBackgroundColor method

Future<void> setBackgroundColor(
  1. Color color
)

Implementation

Future<void> setBackgroundColor(Color color) async {
  await _initFuture!;
  return await WebviewWinFloatingPlatform.instance.setBackgroundColor(_webviewId, color);
}