Line data Source code
1 : import 'package:apptive_grid_core/apptive_grid_core.dart'; 2 : import 'package:apptive_grid_core/web_auth_enabler/configure_nonweb.dart' 3 : if (dart.library.html) 'package:apptive_grid_core/web_auth_enabler/configure_web.dart' 4 : as implementation; 5 : 6 : /// Enable Authentication on the Web 7 : /// This is using a conditional import to listen for Authentication on the Web 8 1 : Future<void> enableWebAuth(ApptiveGridOptions options) { 9 1 : return implementation.enableWebAuth(options); 10 : }