merge method
Merges the old membersMap with the new one (otherMap
).
Implementation
@internal
void merge(Map<String, MemberInfo?> otherMap) {
membersMap = {
...membersMap,
...otherMap,
};
}
Merges the old membersMap with the new one (otherMap
).
@internal
void merge(Map<String, MemberInfo?> otherMap) {
membersMap = {
...membersMap,
...otherMap,
};
}