fromJson<T> method
Converts the given json to a content item of type T
Implementation
@override
T? fromJson<T>(Map<String, dynamic> json) {
final type = provider.schemaType(json);
return _extensionBuilder!.fromJson<T>(type, json);
}