setBackgroundColor static method

void setBackgroundColor(
  1. Color color
)

Implementation

static void setBackgroundColor(Color color) {
  Map<String, dynamic> arguments = {'color': color.value};
  _channel.invokeMethod('setBackgroundColor', arguments);
}