UnitTestGenerationService constructor

UnitTestGenerationService({
  1. required String projectName,
  2. String bodyDateFormat = '.toIso8601String()',
  3. String responseDateFormat = '.toIso8601String()',
})

Implementation

UnitTestGenerationService({
  required String projectName,
  String bodyDateFormat = '.toIso8601String()',
  String responseDateFormat = '.toIso8601String()',
})  : _projectName = projectName,
      _bodyDateFormat = bodyDateFormat,
      _responseDateFormat = responseDateFormat;