Tensegritics / ClojureDart

Clojure dialect for Flutter and Dart
1.44k stars 91 forks source link

How Can I Cast Object? #180

Closed amjil closed 1 year ago

amjil commented 1 year ago

Like this renderObject as RenderBox; Used clojure's cast method but got Unkown Symbol

cgrand commented 1 year ago

Did you try ^alias/RenderBox renderObject? where alias is the alias you used in the require you used for the lib exposing RenderBox?

cgrand commented 1 year ago

Part of #181

amjil commented 1 year ago

Thanks a lot, I will try it later.