Last updated:
0 purchases
global shared
global_shared #
Features #
Share object globally.
Example #
import 'package:global_shared/global_shared.dart';
void main() {
GlobalShared().put("example", Example(text: "Example"));
Example example = GlobalShared().get("example");
print(example.text);
}
class Example {
String? text;
Example({this.text});
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.