FileConfig.fromJson constructor

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

Implementation

factory FileConfig.fromJson(Map<String, dynamic> json) {
  return FileConfig(
    json['fullPath'] as String,
    json['type'] as String,
    json['uid'] as String,
  );
}