Implementation
Map<dynamic, dynamic> get getCommonMap {
var map = <String, dynamic>{
'urlIntance': _urlInstance,
'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;
}