MapTypeControlStyle$cast function

MapTypeControlStyle? MapTypeControlStyle$cast(
  1. dynamic value
)

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;
}