fileVideo static method

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

regular: file-video thin: file-video light: file-video bold: file-video fill: file-video duotone: file-video

Implementation

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