setBkColor method

int setBkColor(
  1. int color
)

Sets the background color of this RichEdit.

Implementation

int setBkColor(int color) {
  logInfo('setBkColor', () => 'color: $color');
  return sendMessage(EM_SETBKGNDCOLOR, 0, color);
}