Config constructor

const Config({
  1. required String secretKey,
  2. required String dbSecretKey,
  3. required String devAuthToken,
  4. required bool isProd,
})

Implementation

const Config({
  required this.secretKey,
  required this.dbSecretKey,
  required this.devAuthToken,
  required this.isProd,
});