code property

List<String> code

Implementation

List<String> get code {
  var model = <String>[];
  list.forEach((element) {
    var data = xBetweenText(element, '', ': {');
    model.add('$data: req.body.$data \n');
  });
  return model;
}