ChatError.fromJson constructor

ChatError.fromJson(
  1. Map map
)

Implementation

factory ChatError.fromJson(Map map) {
  return ChatError._private(map['code'], map['description']);
}