toMap method

  1. @override
Map<String, dynamic> toMap()
override

Implementation

@override
Map<String, dynamic> toMap() {
  return {
    "toolbarTopTranslucent": toolbarTopTranslucent,
    "toolbarTopTintColor": toolbarTopTintColor?.toHex(),
    "hideToolbarBottom": hideToolbarBottom,
    "toolbarBottomBackgroundColor": toolbarBottomBackgroundColor?.toHex(),
    "toolbarBottomTintColor": toolbarBottomTintColor?.toHex(),
    "toolbarBottomTranslucent": toolbarBottomTranslucent,
    "closeButtonCaption": closeButtonCaption,
    "closeButtonColor": closeButtonColor?.toHex(),
    "presentationStyle": presentationStyle.toValue(),
    "transitionStyle": transitionStyle.toValue(),
  };
}