TcmppConfigInfo.fromJson constructor
Implementation
factory TcmppConfigInfo.fromJson(Map<String, dynamic> json) =>
TcmppConfigInfo(
name: json['name'],
fileName: json['fileName'],
isBuiltIn: json['isBuiltIn'] ?? false,
addedTime: json['addedTime'] != null
? DateTime.parse(json['addedTime'])
: null,
);