Kevin Moore

Results 252 issues of Kevin Moore

See https://github.com/dart-lang/json_serializable/issues/285#issuecomment-415609028 ```dart @JsonSerializable(createToJson: false) class LogisticsItem { final bool logisticsChecked; final bool logisticsOK; LogisticsItem(@JsonKey(name: 'LogistikTeileInOrdnung') String processed) : logisticsChecked = processed != null && processed != 'null', logisticsOK =...

Type: enhancement

Depending on JsonSerializable createToJson and createFactory - some annotations may be just ignored. Might be nice to warn about them Fields that only apply if generating toJson - JsonSerializable -...

Type: enhancement

- fix: example/fullstack/frontend: remove unneeded import - refactor: pull logic for handling process signal into a helper - more refactor fun!

- wip on only maps! - wip - wip with unpublished json_serializable

``` ######################## FROM subfuzion/dart:slim COPY --from=0 /app/test/hello/bin/server /app/bin/server EXPOSE 8080 # Note: you may have to change things to support events, etc etc # ENTRYPOINT ["/app/bin/server", "--signature-type", "cloudevent"] ENTRYPOINT ["/app/bin/server"]...

documentation
kind/enhancement

`serve` currently does the work to find the right function. We could expose just the `run` bits that handle one function. Would be very useful for folks doing Cloud Run...

kind/enhancement

Might be nice ```dart // https://cloud.google.com/error-reporting/docs/formatting-error-messages#json_representation '@type': 'type.googleapis.com/google.devtools.clouderrorreporting.v1beta1.ReportedErrorEvent', 'serviceContext': { 'service': Platform.environment['K_SERVICE'], 'version': Platform.environment['K_REVISION'], }, if (stackFrame != null) 'context': { 'reportLocation': { 'filePath': stackFrame.library, if (stackFrame.line != null) 'lineNumber':...

kind/enhancement

https://github.com/flutter/samples/blob/c9688ca34b619246202c5866082e01e3d26167d9/navigation_and_routing/lib/src/routing/parser.dart#L48-L50

enhancement

When migrating the below code to `use_super_parameters`, the references to ctor paramaters in doc comments are now flagged with the `comment_references` hint. ```dart class PartBuilder extends _Builder { /// Wrap...

type-bug