قطعه کد زیر رو برای تبدیل توع داده مینویسیم که خطا میده:
void main() {
var age = 12 as String;
print(age is String);
}
خطای زیر رو میده:
: TypeError: 12: type 'JSInt' is not a subtype of type 'String'Error: TypeError: 12: type 'JSInt' is not a subtype of type 'String'