convertir el tipo de datos DART

import 'dart:convert';

void main() {
	Srting a = "3";
    var b = int.parse(a);
}
Ibrahim Majdalany