-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b91b50b
commit f6aee47
Showing
24 changed files
with
964 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
// | ||
// Generated file. Do not edit. | ||
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`. | ||
// | ||
|
||
// @dart = 2.19 | ||
|
||
import 'dart:io'; // flutter_ignore: dart_io_import. | ||
import 'package:path_provider_android/path_provider_android.dart'; | ||
import 'package:sqflite/sqflite.dart'; | ||
import 'package:url_launcher_android/url_launcher_android.dart'; | ||
import 'package:path_provider_foundation/path_provider_foundation.dart'; | ||
import 'package:sqflite/sqflite.dart'; | ||
import 'package:url_launcher_ios/url_launcher_ios.dart'; | ||
import 'package:path_provider_linux/path_provider_linux.dart'; | ||
import 'package:url_launcher_linux/url_launcher_linux.dart'; | ||
import 'package:path_provider_foundation/path_provider_foundation.dart'; | ||
import 'package:sqflite/sqflite.dart'; | ||
import 'package:url_launcher_macos/url_launcher_macos.dart'; | ||
import 'package:path_provider_windows/path_provider_windows.dart'; | ||
import 'package:url_launcher_windows/url_launcher_windows.dart'; | ||
|
||
@pragma('vm:entry-point') | ||
class _PluginRegistrant { | ||
|
||
@pragma('vm:entry-point') | ||
static void register() { | ||
if (Platform.isAndroid) { | ||
try { | ||
PathProviderAndroid.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`path_provider_android` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
SqflitePlugin.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`sqflite` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
UrlLauncherAndroid.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`url_launcher_android` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
} else if (Platform.isIOS) { | ||
try { | ||
PathProviderFoundation.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`path_provider_foundation` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
SqflitePlugin.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`sqflite` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
UrlLauncherIOS.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`url_launcher_ios` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
} else if (Platform.isLinux) { | ||
try { | ||
PathProviderLinux.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`path_provider_linux` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
UrlLauncherLinux.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`url_launcher_linux` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
} else if (Platform.isMacOS) { | ||
try { | ||
PathProviderFoundation.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`path_provider_foundation` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
SqflitePlugin.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`sqflite` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
UrlLauncherMacOS.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`url_launcher_macos` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
} else if (Platform.isWindows) { | ||
try { | ||
PathProviderWindows.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`path_provider_windows` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
try { | ||
UrlLauncherWindows.registerWith(); | ||
} catch (err) { | ||
print( | ||
'`url_launcher_windows` threw an error: $err. ' | ||
'The app may not function as expected until you remove this plugin from pubspec.yaml' | ||
); | ||
rethrow; | ||
} | ||
|
||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/.filecache
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/debug_android_application.stamp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"inputs":["C:\\Rasabot\\.dart_tool\\flutter_build\\fd71af108f7b95aae36b74c83e14574e\\app.dill","C:\\src\\flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\src\\flutter\\flutter\\bin\\internal\\engine.version","C:\\src\\flutter\\flutter\\bin\\internal\\engine.version","C:\\src\\flutter\\flutter\\bin\\internal\\engine.version","C:\\src\\flutter\\flutter\\bin\\internal\\engine.version","C:\\Rasabot\\pubspec.yaml","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.5\\assets\\CupertinoIcons.ttf","C:\\src\\flutter\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\src\\flutter\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.10.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\bubble-1.2.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.2.3\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-2.0.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.0.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.2.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.17.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.3\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.5\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.0.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-6.1.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_blurhash-0.7.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.3.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-2.0.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\get-4.6.5\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-0.13.6\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.0.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.18.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.5\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-2.0.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.13\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.2.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.8.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-1.0.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.8.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.0.15\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.0.27\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.2.3\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.1.11\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.0.6\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.1.7\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\process-4.2.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.27.7\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.9.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.2.8+4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.4.5+1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.11.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.2.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.1.0\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.1\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.4.16\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.3.2\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.1.11\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.0.36\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.1.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.0.5\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.0.5\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.1.3\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.0.17\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.0.6\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-3.0.7\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.1.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-4.1.4\\LICENSE","C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.0.0\\LICENSE","C:\\src\\flutter\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\src\\flutter\\flutter\\packages\\flutter\\LICENSE"],"outputs":["C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders/ink_sparkle.frag","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"]} |
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/flutter_assets.d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders/ink_sparkle.frag C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json C:\\Rasabot\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z: C:\\Rasabot\\pubspec.yaml C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.5\\assets\\CupertinoIcons.ttf C:\\src\\flutter\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\src\\flutter\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.10.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\bubble-1.2.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.2.3\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-2.0.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.0.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.2.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.17.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.3\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.5\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.0.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-6.1.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_blurhash-0.7.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.3.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-2.0.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\get-4.6.5\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-0.13.6\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.0.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.18.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.5\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-2.0.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.13\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.2.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.8.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-1.0.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.8.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.0.15\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.0.27\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.2.3\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.1.11\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.0.6\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.1.7\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\process-4.2.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.27.7\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.9.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.2.8+4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.4.5+1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.11.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.2.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.1.0\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.1\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.4.16\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.3.2\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.1.11\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.0.36\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.1.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.0.5\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.0.5\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.1.3\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.0.17\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.0.6\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-3.0.7\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.1.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-4.1.4\\LICENSE C:\\Users\\Mounika\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.0.0\\LICENSE C:\\src\\flutter\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\src\\flutter\\flutter\\packages\\flutter\\LICENSE |
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/gen_dart_plugin_registrant.stamp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"inputs":["C:\\Rasabot\\.dart_tool\\package_config_subset"],"outputs":["C:\\Rasabot\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]} |
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/gen_localizations.stamp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"inputs":[],"outputs":[]} |
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/kernel_snapshot.d
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
.dart_tool/flutter_build/fd71af108f7b95aae36b74c83e14574e/kernel_snapshot.stamp
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.