read static method

DoughRecipeData read(
  1. BuildContext context
)

Gets the inherited DoughRecipeData without listening to it. If no recipe is found, a default one will be returned instead.

Implementation

static DoughRecipeData read(BuildContext context) {
  return of(context, false);
}