detective static method

PhosphorIconData detective([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: detective thin: detective light: detective bold: detective fill: detective duotone: detective

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;
  }
}