items2 property
read / write
Implementation
Map<Widget, String> items2 = <Widget, String>{
SvgPicture.asset(
"resources/symbols/right.svg",
height: 20,
width: 20,
): "right",
SvgPicture.asset(
"resources/symbols/left.svg",
height: 20,
width: 20,
): "left",
SvgPicture.asset(
"resources/symbols/up.svg",
height: 20,
width: 20,
): "up",
SvgPicture.asset(
"resources/symbols/down.svg",
height: 20,
width: 20,
): "down",
SvgPicture.asset(
"resources/symbols/diagonal_up_left.svg",
height: 20,
width: 20,
): "diagonal up left",
SvgPicture.asset(
"resources/symbols/diagonal_up_right.svg",
height: 20,
width: 20,
): "diagonal up right",
SvgPicture.asset(
"resources/symbols/diagonal_down_left.svg",
height: 20,
width: 20,
): "diagonal down left",
SvgPicture.asset(
"resources/symbols/diagonal_down_right.svg",
height: 20,
width: 20,
): "diagonal down right",
};