maybe static method

Create a text style theme property or return null if value is null.

Implementation

static TextStyleThemeProperty? maybe(TextStyle? value) =>
    value == null ? null : TextStyleThemeProperty(value);