ResponseKeyMap.fromMap constructor
从 Map 创建
Implementation
factory ResponseKeyMap.fromMap(Map<String, String> map) {
return ResponseKeyMap(
codeKey: map['codeKey'] ?? 'code',
msgKey: map['msgKey'] ?? 'msg',
dataKey: map['dataKey'] ?? 'data',
);
}