Noobware1
Noobware1
By extending another eval class I mean a eval class which already extends a bridge class. I only want my eval class to extend this class and only override two...
here I am trying to catch the error thrown by loadMediaDetails but I am unable to do so. ``` import 'dart:io'; import 'package:meiyou_extenstions/meiyou_extenstions.dart'; import 'build.dart'; void main(List args) async {...
``` final runtime = Compiler().compileWriteAndLoad({ 'example': { 'main.dart': ''' import 'dart:convert'; String main() { final json = jsonDecode("""{ "title": "One Piece Movie 01", "type": "movie", "year": 2000, "poster": { "formats":...
It is complicated to add? If not could you tell me how should I go on about it?
Let me explain when i bridge a function like this ``` String buildString(void Function(StringBuffer it) action) { final it = StringBuffer(); action(it); return it.toString(); } static const buildString = BridgeFunctionDeclaration(...
Like the badCertificateCallback on Httpclient which requires type ```(bool Function(X509Certificate cert, String host, int port)?)``` how would I set it using $setProperty?
Hi, @ethanblake4 i can do the 2 and 3 points you said. The 1st and 4th are just beyond me. If you could elaborate just on them 🙏🙏 it would...
I don't know if this is the ideal solution, so I would appreciate it if you could tell me if there's anything wrong with the code.
test case ``` void main() { final compiler = Compiler(); final packages = { 'test': { 'main.dart': ''' class TestClass { TestClass(int someNumber) : super(someNumber); String get someString => this.notHello;...