getCodeWithIndex method

String? getCodeWithIndex(
  1. int index
)

Returns the code of the file where index corresponds.

Implementation

String? getCodeWithIndex(int index) {
  return this.allFiles[index].code;
}