Bed.fromJson constructor

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

Implementation

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