CommentSectionWidgetBuilder typedef

CommentSectionWidgetBuilder = Widget Function(BuildContext context, String commentSectionId, AsyncValue<List<CommentModel>> comments)

A callback taking a BuildContext and a commentSectionId and returns a Widget.

Implementation

typedef CommentSectionWidgetBuilder = Widget Function(
  BuildContext context,
  String commentSectionId,
  AsyncValue<List<CommentModel>> comments,
);