DateField constructor

DateField()

Implementation

DateField() : super('DateField') {
  nodeRoot.onChange.listen((event) {
    try {
      final newValue = value;
      fireValueChange(newValue, newValue);
    } on Exception catch (_) {}
  });
}