Ao utilizar o of(context) tenho o seguinte retorno: The property 'receitalista' can't be unconditionally accessed because the receiver can be 'null'. Try making the access conditional (using '?.') or adding a null check to the target ('!')
body: ListView(
children: ReceitasInherited.of(context).receitalista,
),
Se usado o ! antes do .receitalista tenho um retorno de unexpected null value
body: ListView(
children: ReceitasInherited.of(context)!.receitalista,
),