Paul DeMarco
Paul DeMarco
What is the current state of support for free-busy querying? [Freebusy Read URL](https://www.calconnect.org/pubdocs/CD0903%20Freebusy%20Read%20URL.pdf): `The foundation of scheduling is the availability of information about those periods when an attendee or resource...
Platform code contains logging that should be user-configurable. Allow the user to change verbosity level for the plugin.
Often times the scan results yield names that I do not expect, and cannot change when I'm using an iOS device.
Use the build.yaml `options` section to disable certain generation from the tool. For instance, users who do not need Firebase to/from can disable it by adding it like so: ```dart...
camelCase (default): ```dart Address.fromMap(Map m) : city = m['city'], postalCode = m['postalCode'], state = m['state']; Map toMap() => { 'city': city, 'postalCode': postalCode, 'state': state }; ``` snake_case: ```dart Address.fromMap(Map...
As of right now, this library has a pretty crude way of generating code, using simple regex and string buffers. In the future, consider replacing this with more official tooling...
Since the `copyWith` function ignores null input parameters, it is not possible to clear out nullable properties: ```dart final person = person.copyWith(imageUrl: null); /// This has no effect because of...
Since the generated file contains some annotations from the **meta** package, (`@immutable`, `@required`), this import statement is needed in all data class files: ```dart import 'package:meta/meta.dart'; import 'package:auto_data/auto_data.dart'; ``` Ideally...
Custom constructors require all fields to be specified: ```dart @data class $Person { String name = 'Paul'; @nullable double weight; int age; /// Generated code will complain that final field...
## Expected Behavior A workflow should be able to signal any workflow using a workflow ID, including itself. ## Actual Behavior Throws a UnknownExternalWorkflowExecution when attempting to signal itself. ##...