Bob Jackman

Results 25 comments of Bob Jackman
trafficstars

Could do, but would have to use yet different terms since `ToCamelCase()` is already in use. (aliasing `ToCamelCase() -> ToLowerCamelCase()` would break current usages of `ToCamelCase()`)

In a similar vein: ```dart var expectedValues = generateValues() ..renameKey('someKey', 'someOtherExistingKey'); // -- throws `Bad state: Existing element would be overwrittenexisting value`, but gets supressed due to below expect(actualValues, expectedValues);...

@Fazlur1453 did you ever find a solution for this?

Related: I'd also love to see support for enums inside classes. Something like: ```dart class Foo { enum Mode { A, B, C }; void doSomething(Foo.Mode mode) ... } void...

Friendly bump on this, please? This is still an issue as referenced [here](https://github.com/dart-lang/http/issues/156#issuecomment-1626285821) (among others) Do we have a workaround? Anything at all?