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
import 'dart:convert'; | |
import 'package:firebase_remote_config/test_client.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:googleapis/firebaseremoteconfig/v1.dart'; | |
import 'package:googleapis_auth/auth_io.dart'; | |
import 'package:http/http.dart'; | |
class RemoteConfigViewModel { | |
final projectName = "projects/fir-admin-control"; |
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
void main() { | |
String? a; | |
String b; | |
a = "a"; | |
b = "b"; | |
print(a.test2); | |
a = null; | |
print(a.test2); |
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
package me.shkschneider.skeleton.helper; | |
import android.text.TextUtils; | |
import android.util.Log; | |
/** | |
* Improved android.util.Log. | |
* | |
* Logs class and method automatically: | |
* [MyApplication onCreate():34] Hello, world! |
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
public class AuthActivity extends Activity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.main); | |
} | |
} | |
@Override |