Deal.fromString constructor

Deal.fromString(
  1. String jsonString
)

Implementation

factory Deal.fromString(String jsonString) {
  return Deal.fromJson(json.decode(jsonString));
}