goodreadsLogo static method

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

regular: goodreads-logo thin: goodreads-logo light: goodreads-logo bold: goodreads-logo fill: goodreads-logo duotone: goodreads-logo

Implementation

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