from static method

MdCodeDto from(
  1. MdCode style
)

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),
  );
}