infoPlistUrlSchemesSample function
Sample for Info.plist CFBundleURLTypes
Implementation
String infoPlistUrlSchemesSample({required String scheme}) {
return ''' <key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>$scheme</string>
</array>
</dict>
</array>''';
}