load method

Future<T> load(
  1. List<String> relations
)

Load the given relations.

Implementation

Future<T> load(List<String> relations) async {
  await EagerLoader.loadRelations([this as KhademModel], relations);
  return this as T;
}