fromJson static method

Meal fromJson(
  1. String jsonString
)

Constructs a Meal instance from a JSON string.

This method decodes the JSON and passes it to fromMap.

Implementation

static Meal fromJson(String jsonString) {
  return fromMap(jsonDecode(jsonString));
}