global_shared

Last updated:

0 purchases

global_shared Image
global_shared Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.