thenInlineCode method

Widget thenInlineCode(
  1. String text
)

Implementation

Widget thenInlineCode(String text) {
  return then(
    WidgetSpan(
      alignment: PlaceholderAlignment.middle,
      child: Text(text).inlineCode(),
    ),
  );
}