PubspecFormatException constructor

const PubspecFormatException(
  1. String missingKeyName
)

Implementation

const PubspecFormatException(String missingKeyName)
    : super(
        'Project pubspec.yaml does not contains "$missingKeyName" key. '
        'Please provide all required data',
      );