DeprecationInfo constructor

const DeprecationInfo({
  1. required String version,
  2. required String reason,
  3. String? replacement,
  4. String? removalVersion,
})

Implementation

const DeprecationInfo({
  required this.version,
  required this.reason,
  this.replacement,
  this.removalVersion,
});