Closed limsangjin12 closed 5 years ago
For constants of optional type in ImmutableMappable.
class Item: ImmutableMappable { let optionalConst: SomeMappable? required init(map: Map) throws { optionalConst = map.value("key") } }
For constants of optional type in ImmutableMappable.