MapTypeControlStyle$cast function
Implementation
MapTypeControlStyle? MapTypeControlStyle$cast(value) {
if (value == MapTypeControlStyle.DEFAULT) return MapTypeControlStyle.DEFAULT;
if (value == MapTypeControlStyle.DROPDOWN_MENU)
return MapTypeControlStyle.DROPDOWN_MENU;
if (value == MapTypeControlStyle.HORIZONTAL_BAR)
return MapTypeControlStyle.HORIZONTAL_BAR;
return null;
}