dropboxLogo property

AppIconData get dropboxLogo

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

Implementation

static AppIconData get dropboxLogo {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.dropboxLogo;
    case AppIconsStyle.thin:
      return AppIconsThin.dropboxLogo;
    case AppIconsStyle.light:
      return AppIconsLight.dropboxLogo;
    case AppIconsStyle.bold:
      return AppIconsBold.dropboxLogo;
    case AppIconsStyle.fill:
      return AppIconsFill.dropboxLogo;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.dropboxLogo;
  }
}