Error.fromMap constructor

Error.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory Error.fromMap(Map<String, dynamic> json) => Error(
      type: json["type"] == null ? null : json["type"],
      help: json["help"] == null ? null : json["help"],
    );