Model.fromJsonString constructor
Model.fromJsonString(
- String source
Implementation
factory Model.fromJsonString(
String source,
) {
try {
return fromJsonStringOrNull(source)!;
} catch (e) {
assert(false, 'Model.fromJsonString: $e');
rethrow;
}
}