resolveLocalKey method
If localKey is null → use primaryKey of the Parent model
Implementation
String resolveLocalKey(Parent parent) {
return localKey ?? parent.primaryKey;
}
If localKey is null → use primaryKey of the Parent model
String resolveLocalKey(Parent parent) {
return localKey ?? parent.primaryKey;
}