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