** (Service) - Holds the options passed into [RegistryBuilder.build()]`RegistryBuilder.build`.** Useful for passing external immutable data into services. constmixin RegistryOptions {** The options passed as into [RegistryBuilder.build()]`RegistryBuilder.build`.abstract[Str:Obj?] options()** Return the value for the specified key. @Operatorabstract Obj? get(Str key)** Returns 'true' if the specified key is mapped. abstract Bool containsKey(Str key)}internalconstclass RegistryOptionsImpl : RegistryOptions {overrideconst[Str:Obj?] optionsnew make([Str:Obj?] options){this.options = options.toImmutable} @Operatoroverride Obj? get(Str key){ options[key]}override Bool containsKey(Str key){ options.containsKey(key)}}