You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
www.boredapi.com appears to have moved to bored-api.appbrewery.com
The line in the Activity factory: price: json['price']! as double, throws when price is an integer. I fixed it by changing it to: price: (json['price']! as num).toDouble(),
The text was updated successfully, but these errors were encountered:
price: json['price']! as double,
throws when price is an integer. I fixed it by changing it to:price: (json['price']! as num).toDouble(),
The text was updated successfully, but these errors were encountered: