I have this Java code
public class CrimeLab {
private static CrimeLab sCrimeLab;
public static CrimeLab get(Context context) {
if (sCrimeLab == null) {
sCrimeLab = new CrimeLab(context);
}
return sCrimeLab;
}
private CrimeLab(Context context) {
}
}
I am writing this Kotlin Code
object CrimeLab {
}
Not sure how to pass "Context" while the object is created for CrimeLab.