setBackgroundColor method

Future<void> setBackgroundColor(
  1. Color color
)

Set the current background color of this view.

Implementation

Future<void> setBackgroundColor(Color color) {
  throw UnimplementedError(
      'setBackgroundColor is not implemented on the current platform');
}