fromJson static method

FCrossAxisAlignment fromJson(
  1. String json
)

Implementation

static FCrossAxisAlignment fromJson(final String json) => FCrossAxisAlignment(
    value: EnumToString.fromString(CrossAxisAlignment.values, json)!);