fromJson<T> static method
Factory constructor that subclasses must implement
This allows automatic conversion from JSON without needing to pass the converter function explicitly
Implementation
static T fromJson<T>(Map<String, dynamic> json) {
throw UnimplementedError(
'Subclasses of CocobaseModel must implement fromJson',
);
}