multipageButtonBackgroundColor property

Color? multipageButtonBackgroundColor

Allows you to set a color for the "Skip next page" button.

Implementation

Color? get multipageButtonBackgroundColor => _multipageButtonBackgroundColor;
void multipageButtonBackgroundColor=(Color? val)

Implementation

set multipageButtonBackgroundColor(Color? val) {
  _multipageButtonBackgroundColor = val;
  _set({"multipageButtonBackgroundColor": _intFromColor(val)});
}