Answers for "the argument type 'string' can't be assigned to the parameter type "'localestringattribut'""

1

The argument type 'String' can't be assigned to the parameter type 'Uri'

#old code               #Replace with

http.get(someString)    http.get(Uri.parse(someString))

http.post(someString)   http.post(Uri.parse(someString))
Posted by: Guest on October-14-2021
0

The argument type 'String' can't be assigned to the parameter type 'Uri'

#old code				#Replace with
http.get(someString)	http.get(Uri.parse(someString))
http.post(someString)	http.post(Uri.parse(someString))
Posted by: Guest on October-14-2021

Code answers related to "the argument type 'string' can't be assigned to the parameter type "'localestringattribut'""

Code answers related to "Dart"

Browse Popular Code Answers by Language