setBackgroundColor method

  1. @override
void setBackgroundColor(
  1. Color color
)

You can set background / barrier color of dialog using this function, even the dialog already pop up. Set it Null to change it as default

Implementation

@override
void setBackgroundColor(Color color) {
  _progressDialogWidget.getDialogState().setBackgroundColor(color);
}