getFiles method

Future<ListModelResponse<SourceFile>> getFiles({
  1. int limit = 50,
  2. int skip = 0,
})

SourceFile files included in this mod.

Implementation

Future<ListModelResponse<SourceFile>> getFiles(
    {int limit = 50, int skip = 0}) {
  return SourceFile.list(modSourceInfo: this, limit: limit, skip: skip);
}