How can I make my Struct ommitable when using it as the type in another struct?
class A < Dry::Struct
..
end
class B < Dry::Struct
attribute :a, A.meta(omittable: true)
end
The above gives the error:
NoMethodError (undefined method
meta’ for A:Class)`
Thanks. Great library btw