toJsonMap method

Map toJsonMap()

Implementation

Map toJsonMap() {
  return {
    "isPopViewTheme": isPopViewTheme,
    "width": width,
    "height": height,
    "offsetCenterX": offsetCenterX,
    "offsetCenterY": offsetCenterY,
    "isBottom": isBottom,
    "popViewCornerRadius": popViewCornerRadius,
    "backgroundAlpha": backgroundAlpha,
  }..removeWhere((key, value) => value == null);
}