File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -129,20 +129,20 @@ public actual class AuthResult(
129129 public actual val user: FirebaseUser ?
130130 get() = android.user?.let { FirebaseUser (it) }
131131 public actual val credential: AuthCredential ?
132- get() { throw NotImplementedError () }
132+ get() = throw NotImplementedError ()
133133 public actual val additionalUserInfo: AdditionalUserInfo ?
134- get() { throw NotImplementedError () }
134+ get() = throw NotImplementedError ()
135135}
136136
137137public actual class AdditionalUserInfo {
138138 public actual val providerId: String?
139- get() { throw NotImplementedError () }
139+ get() = throw NotImplementedError ()
140140 public actual val username: String?
141- get() { throw NotImplementedError () }
141+ get() = throw NotImplementedError ()
142142 public actual val profile: Map <String , Any ?>?
143- get() { throw NotImplementedError () }
143+ get() = throw NotImplementedError ()
144144 public actual val isNewUser: Boolean
145- get() { throw NotImplementedError () }
145+ get() = throw NotImplementedError ()
146146}
147147
148148public actual class AuthTokenResult (public val android : com.google.firebase.auth.GetTokenResult ) {
You can’t perform that action at this time.
0 commit comments