Model.fromJsonString constructor

Model.fromJsonString(
  1. String source
)

Implementation

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