fromJson static method

ConfigMountSpec fromJson(
  1. Map<String, dynamic> json
)

Implementation

static ConfigMountSpec fromJson(Map<String, dynamic> json) {
  return ConfigMountSpec(path: json['path'] as String? ?? '/var/run/meshagent');
}