expandablePanelIconPlacement static method

ExpandablePanelIconPlacement? expandablePanelIconPlacement(
  1. dynamic value
)

Implementation

static ExpandablePanelIconPlacement? expandablePanelIconPlacement(
        dynamic value) =>
    switch (value) {
      'left' => ExpandablePanelIconPlacement.left,
      'right' => ExpandablePanelIconPlacement.right,
      _ => null
    };