ProfileError.fromJson constructor

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

Implementation

factory ProfileError.fromJson(Map<String, dynamic> json) => ProfileError(
      serviceErrorCode: json["serviceErrorCode"],
      message: json["message"],
      status: json["status"],
    );