buildSuccessState method
Implementation
@override
Widget buildSuccessState(BuildContext context, ThirdPartySessionModel? data) {
if (data!.validate()) {
onSessionSuccess(data);
} else {
onSessionError(ModErrorCodes.SIGNUP);
}
return child;
}