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