kanban static method
regular:
thin:
light:
bold:
fill:
duotone:
Implementation
static PhosphorIconData kanban(
[PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
switch (style) {
case PhosphorIconsStyle.regular:
return PhosphorIconsRegular.kanban;
case PhosphorIconsStyle.thin:
return PhosphorIconsThin.kanban;
case PhosphorIconsStyle.light:
return PhosphorIconsLight.kanban;
case PhosphorIconsStyle.bold:
return PhosphorIconsBold.kanban;
case PhosphorIconsStyle.fill:
return PhosphorIconsFill.kanban;
case PhosphorIconsStyle.duotone:
return PhosphorIconsDuotone.kanban;
}
}