toJson method

Map<String, String> toJson()

Implementation

Map<String, String> toJson() {
  return {
    "actionBarColor": actionBarColor ?? "",
    "actionBarTitle": actionBarTitle ?? "",
    "actionBarTitleColor": actionBarTitleColor ?? "",
    "allViewTitle": allViewTitle ?? "",
    "lightStatusBar": lightStatusBar == true ? "true" : "false",
    "statusBarColor": statusBarColor ?? "",
    "startInAllView": startInAllView == true ? "true" : "false",
    "useDetailsView": useDetailsView == true ? "true" : "false",
    "selectCircleStrokeColor": selectCircleStrokeColor ?? "",
    "selectionLimitReachedText": selectionLimitReachedText ?? "",
    "textOnNothingSelected": textOnNothingSelected ?? "",
    "backButtonDrawable": backButtonDrawable ?? "",
    "okButtonDrawable": okButtonDrawable ?? "",
    "autoCloseOnSelectionLimit":
        autoCloseOnSelectionLimit == true ? "true" : "false"
  };
}