load method

void load({
  1. File? file,
})

Implementation

void load({File? file}) {
  if (env.isEmpty) {
    env = _loadEnv(file: file);
  }
}