Hey <@U037W54DPAN> I was trying to integrate my ap...
# sdk-flutter
r
Hey @gifted-cat-24658 I was trying to integrate my application with growth book when I was getting this same error of empty features. Any update on that or workaround?
g
Hey, @rough-memory-36198 it is been resolved, The intialization of SDK will send request for feature as it is async call. So if you want to all feature feature in intializations you can give try this snippet. It will block event loop.
Copy code
Future<void> fetchFeatureWithBlocking() async{
   await _sdkInstance.refresh();
  }
Here
_sdkInstance
is object of
GrowthBookSDK