Value.fromJson constructor

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

Implementation

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