Error.fromMap constructor

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

Implementation

factory Error.fromMap(Map<String, dynamic> json) => Error(
      errorCode: json["errorCode"],
      errorMessage: json["errorMessage"],
      errorDescription: json["errorDescription"],
      targetValue: json["targetValue"],
      level: json["level"],
      businessException: json["businessException"],
      apiLogKey: json["apiLogKey"],
      customId: json["customId"],
    );