ComponentFile.fromJson constructor

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

Implementation

factory ComponentFile.fromJson(Map<String, dynamic> json) {
  return ComponentFile(
    source: json['source'] as String,
    destination: json['destination'] as String,
  );
}