toMap method
Implementation
@override
Map toMap() {
return {
'Pack': {
'name': name,
'main': main?.toMap(),
'load': load?.toMap(),
'modules': modules?.map((x) => x.toMap()).toList(),
'files': files?.map((x) => x.toMap()).toList(),
}
};
}