sourceCodeFileMap property

Map<String, String> sourceCodeFileMap

Implementation

Map<String, String> get sourceCodeFileMap {
  return {
    'main.dart': code,
    if (testCode != null) 'test.dart': testCode!,
    if (solutionCode != null) 'solution.dart': solutionCode!,
    if (hintText != null) 'hint.txt': hintText!,
  };
}