zone_local 0.1.1 copy "zone_local: ^0.1.1" to clipboard
zone_local: ^0.1.1 copied to clipboard

discontinued
outdated

Type-safe zone-scoped variables.

example/zone_local.dart

import 'package:zone_local/zone_local.dart';

final ZoneLocal<String> greeting = new ZoneLocal<String>(defaultValue:"Hello!");

void main() {
  print(greeting.value);

  // Run a function in a forked zone that sees value "Hi!"
  greeting.forkZoneWithValue("Hi!").run(() {
    print(greeting.value);
  });
}
0
likes
25
pub points
6%
popularity

Publisher

unverified uploader

Type-safe zone-scoped variables.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

More

Packages that depend on zone_local