fromMap static method
Implementation
static AndroidInAppBrowserOptions fromMap(Map<String, dynamic> map) {
var instance = AndroidInAppBrowserOptions();
instance.hideTitleBar = map["hideTitleBar"];
instance.toolbarTopFixedTitle = map["toolbarTopFixedTitle"];
instance.closeOnCannotGoBack = map["closeOnCannotGoBack"];
instance.allowGoBackWithBackButton = map["allowGoBackWithBackButton"];
instance.shouldCloseOnBackButtonPressed =
map["shouldCloseOnBackButtonPressed"];
return instance;
}