abstract class ORMInterface {
void fromJson(Map _map);
}
abstract class ORM implements ORMInterface {
String collection = 'default';
first(Map _map2) {
print("Col $collection");
}
}
class Person extends ORM {
String collection = 'persons';
fromJson(Map _map) {
print("Here is mandatory");
}
}