Identifiable.fromJson constructor

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

Implementation

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