ConfigWarning constructor

const ConfigWarning({
  1. required String code,
  2. required String message,
  3. required String path,
})

Implementation

const ConfigWarning({
  required this.code,
  required this.message,
  required this.path,
});