fromJson static method

FCurve fromJson(
  1. String json
)

Implementation

static FCurve fromJson(final String json) {
  return FCurve(
    curve: dictiornary[json] ?? Curves.linear,
  );
}