Aderbal Nunes
Aderbal Nunes

Reputation: 400

Flutter app background use of the compute function

I'm learning Flutter and in my first app I try to use http to fetch a list of users. When I try to parse json response data using 'compute' function, my code broken. "The function 'compute' ins't defined"

Error

I have no idea what's happening.

Upvotes: 1

Views: 635

Answers (1)

Sebastian
Sebastian

Reputation: 3894

You need to import the foundation package. Put this in the beginning of the file

import 'package:flutter/foundation.dart';

Upvotes: 3

Related Questions