DiskPath.fromJson constructor

DiskPath.fromJson(
  1. Map json_
)

Implementation

DiskPath.fromJson(core.Map json_)
    : this(
        partitionUuid: json_['partitionUuid'] as core.String?,
        relativePath: json_['relativePath'] as core.String?,
      );