How Do I include/Import a Custom Widget from the Parent theme into My Child Theme?

Either go and extend the class, or copy, paste and rename it (not recommended).

class Child_Theme_Widget extends Parent_Theme_Widget
{
    // just re-define/override the parent theme widgets methods (functions) here
}