createMapConfig function
void
createMapConfig()
Creates the Mapsted configuration files.
This function prints a setup message to the console and then initiates the process of creating and configuring various Mapsted-related script files required for both iOS and Android platforms. It handles tasks such as applying permissions, setting themes, and updating deployment targets.
Example usage:
createMapConfig();
Implementation
void createMapConfig() {
print(
'''
╔════════════════════════════════════════════════════════════════════════════╗
║ Setting up Map Config! ║
╚════════════════════════════════════════════════════════════════════════════╝
''',
);
_createScriptFiles();
}