compile method
Returns a map of replica objects that can be used at replica while running in mirrored mode.
Implementation
@override
Map<String, dynamic> compile(MirrorContext context) {
return Map.fromEntries(context.getSubclassesOf(Configuration).map((c) {
return MapEntry(
MirrorSystem.getName(c.simpleName), ConfigurationRuntimeImpl(c));
}));
}