LKProjectDesc.fromJson constructor

LKProjectDesc.fromJson(
  1. Map<String, dynamic> map
)

Implementation

factory LKProjectDesc.fromJson(Map<String, dynamic> map) {
  return LKProjectDesc(
      id: map['id'] ?? '',
      place: LKPlace.fromJson(map['place']),
      project: LKProject.fromJson(map['project']),
      good: LKGood.fromJson(map['good']));
}