strikethrough static method

String strikethrough(
  1. dynamic value
)

Returns a strikethrough text

final str = Md.strikethrough('Hello world');

Implementation

static String strikethrough (dynamic value) => '~~$value~~';