setMaxWidth method

Popup setMaxWidth(
  1. String maxWidth
)

Sets the popup's maximum width. This is setting the CSS property max-width. Available values can be found here: https://developer.mozilla.org/en-US/docs/Web/CSS/max-width

@param maxWidth A string representing the value for the maximum width. @returns {Popup} this

Implementation

Popup setMaxWidth(String maxWidth) =>
    Popup.fromJsObject(jsObject.setMaxWidth(maxWidth));