build method

  1. @override
Widget build(
  1. BuildContext context,
  2. String text,
  3. GptMarkdownConfig config
)
override

Implementation

@override
Widget build(
  BuildContext context,
  String text,
  final GptMarkdownConfig config,
) {
  return CustomDivider(
    height: 2,
    color: config.style?.color ?? Theme.of(context).colorScheme.outline,
  );
}