CensorWidgetBuilder typedef

CensorWidgetBuilder = Widget Function(BuildContext context, String word)

A function that generates replacement widgets for profane words.

Implementation

typedef CensorWidgetBuilder =
    Widget Function(
      BuildContext context,
      String word,
    );