how to make condition statement after dot(.) or before property in any method or class
how to make condition statement after dont(.) or before property in any method or class for example i have the following bool a = true ; FirebaseFirestore.instance.collection(‘users’) .limit(10) .where(‘visible’, isEqualTo: true) // here i need to use a? isEqualTo : whereIn {………….} or at least a?.where(‘visible’, isEqualTo: true) : .where(‘visible’, whereIn: [1]) what is the… Read More how to make condition statement after dot(.) or before property in any method or class