googleDriveLogo static method

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

regular: google-drive-logo thin: google-drive-logo light: google-drive-logo bold: google-drive-logo fill: google-drive-logo duotone: google-drive-logo

Implementation

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