Config.fromMap constructor
Implementation
factory Config.fromMap(Map<String, dynamic> map) {
return Config(
templatePath:
map['templatePath'] != null ? map['templatePath'] as String : null,
defaultModuleName: map['defaultModuleName'] != null
? map['defaultModuleName'] as String
: null,
);
}