forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase_auth.dart
More file actions
executable file
·26 lines (22 loc) · 957 Bytes
/
firebase_auth.dart
File metadata and controls
executable file
·26 lines (22 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2018, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library firebase_auth;
import 'dart:async';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/services.dart';
import 'package:meta/meta.dart';
part 'src/additional_user_info.dart';
part 'src/auth_credential.dart';
part 'src/auth_exception.dart';
part 'src/auth_provider/email_auth_provider.dart';
part 'src/auth_provider/facebook_auth_provider.dart';
part 'src/auth_provider/github_auth_provider.dart';
part 'src/auth_provider/google_auth_provider.dart';
part 'src/auth_provider/phone_auth_provider.dart';
part 'src/auth_provider/twitter_auth_provider.dart';
part 'src/firebase_auth.dart';
part 'src/firebase_user.dart';
part 'src/user_info.dart';
part 'src/user_metadata.dart';
part 'src/user_update_info.dart';