NearbyFileInfo.fromJson constructor

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

Implementation

factory NearbyFileInfo.fromJson(Map<String, dynamic>? json) {
  return NearbyFileInfo(
    path: json?['path'] ?? '',
  );
}