buildMap method

Map buildMap ()

Implementation

Map<dynamic, dynamic> buildMap(){

  var map = <dynamic, dynamic>{
    "urlIntance":_urlIntance,
    "apikey":_apikey,
    "authToken":_authToken,

    //Android custom layout
    "setAndroidColorSilhoutte": androidColorSilhoutte,
    "setAndroidColorBackground": androidColorBackground,
    "setAndroidColorBoxMessage": androidColorBoxMessage,
    "setAndroidColorTextMessage": androidColorTextMessage,
    "setAndroidColorBackgroundPopupError": androidColorBackgroundPopupError,
    "setAndroidColorTextPopupError": androidColorTextPopupError,
    "setAndroidColorBackgroundButtonPopupError": androidColorBackgroundButtonPopupError,
    "setAndroidColorTextButtonPopupError": androidColorTextButtonPopupError,
    "setAndroidColorBackgroundTakePictureButton": androidColorBackgroundTakePictureButton,
    "setAndroidColorIconTakePictureButton": androidColorIconTakePictureButton,
    "setAndroidColorBackgroundBottomDocument": androidColorBackgroundBottomDocument,
    "setAndroidColorTextBottomDocument": androidColorTextBottomDocument,

    //Ios custom layout
    "setIosColorSilhoutteNeutra": iosColorSilhoutteNeutra,
    "setIosColorSilhoutteSuccess": iosColorSilhoutteSuccess,
    "setIosColorSilhoutteError": iosColorSilhoutteError,
    "setIosColorBackground": iosColorBackground,
    "setIosColorBackgroundBoxStatus": iosColorBackgroundBoxStatus,
    "setIosColorTextBoxStatus": iosColorTextBoxStatus,
    "setIosColorBackgroundPopupError": iosColorBackgroundPopupError,
    "setIosColorTextPopupError": iosColorTextPopupError,
    "setIosImageIconPopupError": iosImageIconPopupError

  };

  return map;

}