setBackgroundColor method

Future<void> setBackgroundColor(
  1. Color color
)

Sets the current background color of this view.

Implementation

Future<void> setBackgroundColor(Color color) {
  return platform.setBackgroundColor(color);
}