code static method

String code(
  1. String value
)

Returns a code text

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

Implementation

static String code (String value) => '```$value```';