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