parse static method
Implementation
static ConsentMessage? parse(String jsonStr) {
try {
Map<String, dynamic> json = jsonDecode(jsonStr);
return ConsentMessage.fromJson(json);
} catch (e, stackTrace) {
Pam.log(["ConsentMessage.parse Error", stackTrace, e]);
return null;
}
}