fromJson static method

FTextAlign fromJson(
  1. String json
)

Implementation

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