fromJson static method

FBlendMode fromJson(
  1. String json
)

Implementation

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