toMap method
Implementation
Map toMap() {
Map map = <String, dynamic>{};
map['actionId'] = actionId;
map['title'] = title;
map['doneTitle'] = doneTitle;
map['inType'] = inType;
map['firstCamera'] = firstCamera;
map['showBottomCamera'] = showBottomCamera;
map['showGridCamera'] = showGridCamera;
map['showAlbum'] = showAlbum;
map['isMulti'] = isMulti;
map['guides'] = guides;
map['multiCount'] = multiCount;
map['cute'] = cute;
map['customCamera'] = customCamera;
map['bottomActionTitle'] = bottomActionTitle;
map['autoShowGuide'] = autoShowGuide;
return map;
}