maybeAs static method

TextStyleDto? maybeAs(
  1. TextStyle? style
)

Implementation

static TextStyleDto? maybeAs(TextStyle? style) {
  return style == null ? null : TextStyleDto.as(style);
}