multipageButtonBackgroundColor property

dynamic multipageButtonBackgroundColor

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

Implementation

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

Implementation

set multipageButtonBackgroundColor(Color? val) {
  _multipageButtonBackgroundColor = val;
  _setCustomization(
      {"multipageButtonBackgroundColor": _intFromColor(val)}, this);
}