ManifoldProvider<T> constructor

ManifoldProvider<T>(
  1. BehaviorSubject<T> value,
  2. $AClass<T> mirror, {
  3. bool readOnly = false,
})

Implementation

ManifoldProvider(this.value, this.mirror, {this.readOnly = false}) {
  if (value.hasValue) {
    try {
      fireCrudDocumentPath = (value.value as dynamic).documentPath;
    } catch (_) {}
  }
}