path property

String? path

Gets the file path where data is stored.

Return the file path where data is stored.

Implementation

String? get path {
  return path_;
}
void path=(String? value)

Sets the file path where data is stored.

  • value the file path where data is stored.

Implementation

set path(String? value) {
  path_ = value;
}