ConsentInfo.fromString constructor
ConsentInfo.fromString(
- String jsonString
Implementation
factory ConsentInfo.fromString(String jsonString) {
final Map<String, dynamic> jsonMap = jsonDecode(jsonString);
return ConsentInfo.fromJson(jsonMap);
}