Line data Source code
1 : class Model { 2 : final String id; 3 : 4 2 : Model({ 5 : required this.id, 6 : }); 7 : }