maybeFrom static method

MdCodeDto? maybeFrom(
  1. MdCode? style
)

Implementation

static MdCodeDto? maybeFrom(MdCode? style) {
  return style != null ? from(style) : null;
}