Deprecation.future constructor

const Deprecation.future(
  1. String id, {
  2. String? description,
})

Constructs a future deprecation.

Implementation

const Deprecation.future(this.id, {this.description})
    : _deprecatedIn = null,
      _obsoleteIn = null,
      isFuture = true;