build method

  1. @override
Widget build(
  1. BuildContext context,
  2. String text,
  3. TextStyle? style,
  4. void onLinkTab(
    1. String url,
    2. String title
    )?,
)
override

Implementation

@override
Widget build(
  BuildContext context,
  String text,
  TextStyle? style,
  final void Function(String url, String title)? onLinkTab,
) {
  return CustomDivider(
    height: 2,
    color: style?.color ?? Theme.of(context).colorScheme.outline,
  );
}