code property

Implementation

static PatternStyle get code => PatternStyle(
      '`',
      RegExp('`[^`]+`'),
      '',
      TextStyle(
        fontFamily: defaultTargetPlatform == TargetPlatform.iOS
            ? 'Courier'
            : 'monospace',
      ),
    );