praxamarnix

Results 2 issues of praxamarnix

**Is your feature request related to a problem? Please describe.** I would like to prompt the developer to input the "args" that need to be sent to my dart application...

is enhancement
in debugger
in cli

Given the following example code: ```dart import 'dart:typed_data'; void main(List arguments) { final a = Float32List.fromList([1.0, 2.0]); final b = a.buffer.asUint8List(); print(b); final c = ByteData(8); c.setFloat32(0, 1.0); c.setFloat32(4, 2.0);...