iconData static method

FIconBuilder iconData(
  1. IconData icon
)

A builder that renders the given IconData as a Flutter Icon.

Implementation

static FIconBuilder iconData(IconData icon) =>
    (_, {semanticsLabel}) => Icon(icon, semanticLabel: semanticsLabel);