value property

  1. @override
String? get value
override

Gets the section value.

Implementation

@override
String? get value => _root[path];
  1. @override
set value (String? v)
override

Sets the section value.

Implementation

@override
set value(String? v) => _root[path] = v;