from static method
Implementation
static MdCodeDto from(MdCode style) {
return MdCodeDto(
span: TextStyleDto.maybeAs(style.codeSpan),
padding: SpacingDto.maybeFrom(style.codeblockPadding),
decoration: BoxDecorationDto.maybeFrom(style.codeblockDecoration),
copyIconColor: ColorDto.maybeFrom(style.copyIconColor),
textStyle: TextStyleDto.maybeAs(style.codeBlock),
);
}