dropboxLogo static method

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

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

Implementation

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