readSrcPage function

Future<SrcPage> readSrcPage(
  1. String folderPath,
  2. String fileName
)

read src page

Implementation

Future<SrcPage> readSrcPage(String folderPath, String fileName) async {
  final path = '$folderPath/$fileName';
  return readSrcPageFullPath(path);
}